/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BRAND COLORS */
:root {
  --primary: #5fc3c3;
  --primary-dark: #4ab0b0;
  --bg-dark: #0a0a0a;
  --text-light: #ccc;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: radial-gradient(circle at top, #1a1a2a, #0a0a0a);
}

/* LOADER */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  overflow: hidden;
}

.loader-content {
  text-align: center;
  animation: fadeInScale 1.5s ease forwards;
}

/* LOGO TEXT */
.loader-content .logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 100px;
  color: #fff;
  opacity: 0;
  animation: textReveal 1.5s ease forwards;
}

.loader-content .logo-sub {
  font-size: 20px;
  letter-spacing: 5px;
  color: var(--text-light);
  margin-top: -35px;
  margin-left: 100px;
  opacity: 0;
  animation: textReveal 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* ANIMATIONS */
@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 10px;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 5px;
  }
}

@keyframes fadeInScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* LOGO */
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-top: -8px;
  margin-left: 60px;
}

/* NAVBAR */
 .navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between; /* THIS IS THE KEY */
  align-items: center;
  padding: 15px 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: center;
}

.nav-link {
  position: relative;
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  letter-spacing: 1px;
}

/* HOVER UNDERLINE EFFECT */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.nav-link.active {
  color: var(--primary);
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(0,0,0,0.95);
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 768px) {

  .navbar {
    grid-template-columns: 1fr 1fr;
  }

  #nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  #nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-link {
    margin: 15px 0;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../images/lustre_hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute; 
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #000;
  color: gold;
  border: 1px solid gold;
}

.btn.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.outline:hover {
  background: var(--primary);
  color: #fff;
}

/* FILTERS */
.filters {
  margin-bottom: 20px;
}

.filters button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.filters button:hover {
  background: gold;
  color: #000;
}

.filter {
  display: none;
}

.show {
  display: block;
}

/* SECTION */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

/* GOLD DIVIDER LINE */
.section h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background: gold;
  display: block;
  margin: 10px auto 0;
}

.section p {
  max-width: 600px;
  margin: auto;
  color: var(--text-light)
}

.portfolio-btn {
    display: flex;
    justify-content: center;
    gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* SERVICES */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(95,195,195,0.2);
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(0,0,0,0.8);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: gold;
  display: block;
}

.card:hover .icon {
  transform: scale(1.2);
  transition: 0.3s;
}

.services-btn {
  text-align: center;
  margin-top: 20px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(70%);
}

.slider {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.slide {
  display: none;
  font-style: italic;
}

.slide.active {
  display: block;
}

/* CTA */
.cta {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url('../images/conference3.png') center/cover;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  max-width: 600px;
  color: var(--text-light);
}

.cta .btn {
  margin-top: 20px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  top: 0;
  left: 0;
  text-align: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* CONTACT */


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
}

.contact-form button:hover {
  background: gold;
  color: #000;
  border: 1px solid gold;
}

/* PORTFOLIO HERO */
.portfolio-hero {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/livingroom2.jpeg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.portfolio-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
}

.portfolio-hero p {
  color: #ccc;
}

/* GALLERY ITEM (UPGRADE) */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* HOVER OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px;
  transform: translateY(100%);
  transition: 0.3s;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

/* ABOUT HERO */
.about-hero {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/livingroom1.jpeg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
}

/* TEAM SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  object-position: top;
}

.team-card h3 {
  margin-top: 10px;
}

.team-card h4 {
  color: gold;
}

.team-card p {
  color: #ccc;
  font-size: 10px;
}

.team-card:hover {
  transform: translateY(-10px);
}

/* MOBILE */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT HERO */
.contact-hero {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/livingroom1.jpeg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* CONTACT LAYOUT */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

/* CONTACT INFO */
.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #ccc;
}

.contact-info i {
  color: gold;
  margin-right: 8px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  background: #1a1a1a;
  color: #fff;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: gold;
  border: none;
  cursor: pointer;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* SERVICES HERO */
.services-hero {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/livingroom5.jpeg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* SERVICE CARD */
.service-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,215,0,0.2);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  margin: 15px 0;
}

.service-card p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  background: rgba(0,0,0,0.8);
}

/* SMALL BUTTON */
.btn.small {
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-col {
    line-height: 1.6;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: gold;
}

/* LOGO */
.footer-logo {
  font-family: 'Playfair Display', serif;
}

.footer-logo span {
  color: gold;
}

/* SOCIAL ICONS */
.socials a {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.socials a:hover {
  color: gold;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 13px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 1000;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.whatsapp:hover {
  background: #1ebe5d;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 35px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col {
    margin-bottom: 10px;
  }

  .footer-col h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 14px;
  }

  .socials {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .footer-logo {
    font-size: 20px;
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  /* LOGO */
  .logo-text {
    z-index: 2;
  }

  .logo-script {
    font-size: 50px;
  }

  .logo-sub {
    font-size: 8px;
    margin-left: 50px;
    margin-top: -5px;
  }

  /* MENU ICON */
  .menu-toggle {
    display: block;
    z-index: 2;
  }

  /* NAV MENU DROPDOWN */
  #nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  #nav-menu.active {
    display: flex;
  }

  .nav-link {
    margin: 15px 0;
  }
}