* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: "Segoe UI", sans-serif;
  background:#f4efe9b0;
  color:#1a1a1a;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top:0;
  width:100%;
  background:#ffffffc4;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  z-index:9999;
}

.logo {
  color:rgb(86, 8, 72);
  font-size:22px;
  font-weight:bold;
}

.nav-links {
  list-style:none;
  display:flex;
  gap:25px;
}

.nav-links a {
  color:rgb(75, 7, 63);
  text-decoration:none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #0e0e0e;
  min-width: 260px;
  padding: 20px 0;
  display: none;
  z-index: 9999;
}

.dropdown-menu li {
  padding: 8px 30px;
}

.dropdown-menu li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  color: #b08d57; /* gold accent */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* HERO */
.hero {
  height:100vh;
  position:relative;
  overflow:hidden;
}

.slide {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease;
}

.slide.active {
  opacity:1;
  animation: zoomSlow 5s linear;
}

@keyframes zoomSlow {
  from { transform:scale(1); }
  to { transform:scale(1.1); }
}

.hero-text {
  position:absolute;
  left:60px;
  bottom:80px;
}

.hero-text h1 { color:white; font-size:42px; }
.hero-text p {
  background:rgba(255,255,255,0.6);
  padding:6px 10px;
}

/* ABOUT */
.about-section { padding:120px 10%; background:#fbf6ef; }
.about-container { display:grid; grid-template-columns:1.1fr 1fr; gap:80px; }
.about-image img { width:100%; height:620px; object-fit:cover; }

/* PROJECTS */
.section { padding:100px 10%; background:white; }
.projects-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}
.projects-grid img {
  width:100%;
  height:260px;
  object-fit:cover;
  cursor:pointer;
}

/* LIGHTBOX */
.lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:10000;
}

.lightbox-img { max-width:90%; max-height:90%; }

.lightbox .close,
.lightbox .nav {
  position:absolute;
  color:white;
  font-size:40px;
  cursor:pointer;
}

.close { top:30px; right:40px; }
.prev { left:40px; }
.next { right:40px; }

/* WHATSAPP */
.whatsapp-float {
  position:fixed;
  bottom:30px;
  left:30px;
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* SCROLL TOP */
#scrollTopBtn {
  position:fixed;
  bottom:30px;
  right:30px;
  display:none;
  background:#6b2d5c;
  color:white;
  border:none;
  padding:12px;
}

/* REVEAL */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}
.reveal.active {
  opacity:1;
  transform:translateY(0);
}

/* ================= TRISHA STYLE ABOUT ================= */

.about-editorial {
  background: #fbf6ef;
  padding: 140px 10%;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b2d5c;
  display: inline-block;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-text blockquote {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid #6b2d5c;
  font-style: italic;
  color: #6b2d5c;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

/* ================= TRISHA STYLE CONTACT ================= */

.contact-editorial {
  background: #ffffff;
  padding: 140px 10%;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-right form input,
.contact-right form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-right form textarea {
  min-height: 120px;
}

.contact-right form button {
  background: #6b2d5c;
  color: white;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 420px;
  }
}

/* ================= SERVICE PAGE (TRISHA STYLE) ================= */

/* SERVICE HERO */
.service-hero {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
}

.service-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;   /* 🔥 THIS IS THE FIX */
  text-align: center;
}

.service-hero::after {
  z-index: 1;
}

/* SERVICE HERO IMAGE – PERFECT FIT */
.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* fills space */
  object-position: center center; /* keeps subject centered */
  transform: scale(1.05);         /* 🔥 slight zoom only */
}




.service-hero-content h1 {
  color: #ffffff;
  font-size: 54px;
  font-family: serif;
  letter-spacing: 1px;
}

/* SERVICE CONTENT (EDITORIAL TEXT) */
.service-content {
  max-width: 900px;
  margin: 120px auto;
  padding: 0 20px;
}

.service-content h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.service-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
}

/* ================= FORCE TRISHA SERVICE GALLERY FIX ================= */

section.service-gallery {
  max-width: 1180px;
  margin: 0 auto 120px auto;
  padding: 0 !important;            /* 🔥 kill old padding */
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
}

/* lock image proportions */
section.service-gallery > img {
  width: 100%;
  height: 230px !important;         /* 🔥 force height */
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover */
section.service-gallery > img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* tablet */
@media (max-width: 1024px) {
  section.service-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  section.service-gallery > img {
    height: 220px !important;
  }
}

/* mobile */
@media (max-width: 600px) {
  section.service-gallery {
    grid-template-columns: 1fr !important;
  }

  section.service-gallery > img {
    height: 210px !important;
  }
}


/* OPTIONAL CAPTION STYLE (IF YOU USE IT) */
.service-caption {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-hero-content h1 {
    font-size: 40px;
    padding: 0 20px;
  }

  .service-content {
    margin: 80px auto;
  }

  .service-gallery img {
    height: 220px;
  }
}

/* ================= TRISHA STYLE SERVICES ================= */

.services-showcase {
  background: #fbf6ef;
  padding: 120px 10%;
  text-align: center;
}

.services-eyebrow {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #6a1b5d;
  margin-bottom: 12px;
}

.services-title {
  font-size: 44px;
  font-family: serif;
  margin-bottom: 50px;
  color: #1a1a1a;
}

/* CATEGORY TABS (VISUAL ONLY) */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.services-tabs span {
  font-size: 16px;
  cursor: default;
  color: #444;
  position: relative;
}

.services-tabs .active {
  color: #6a1b5d;
}

.services-tabs .active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #6a1b5d;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 0;
}

.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.service-category {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #e6d5c3;
  margin-bottom: 8px;
}

.service-overlay h3 {
  color: white;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

/* ===== SERVICES SECTION ENTRY ANIMATION ===== */

#services {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

#services.services-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger cards */
#services .service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#services.services-visible .service-card {
  opacity: 1;
  transform: translateY(0);
}

#services.services-visible .service-card:nth-child(1) { transition-delay: 0.1s; }
#services.services-visible .service-card:nth-child(2) { transition-delay: 0.2s; }
#services.services-visible .service-card:nth-child(3) { transition-delay: 0.3s; }
#services.services-visible .service-card:nth-child(4) { transition-delay: 0.4s; }
#services.services-visible .service-card:nth-child(5) { transition-delay: 0.5s; }
#services.services-visible .service-card:nth-child(6) { transition-delay: 0.6s; }
#services.services-visible .service-card:nth-child(7) { transition-delay: 0.7s; }

/* ===== NAVBAR UNDERLINE HOVER EFFECT ===== */

.nav-links li a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #b08d57; /* gold */
  transition: width 0.35s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ===== DROPDOWN ANIMATION ===== */

.dropdown-menu {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== SERVICE CARD HOVER ===== */

.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===========================
   SERVICE PAGES – HARD RESET
   Prevent global zoom issues
=========================== */

/* Stop homepage hero effects leaking */
.service-hero,
.service-hero * {
  animation: none !important;
  transform: none !important;
}

/* SERVICE HERO FIX */
.service-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background: #000;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* SHOW FULL IMAGE */
  object-position: center;    /* No weird crop */
  transform: scale(1.02);     /* VERY subtle fit */
}

/* HERO TEXT */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}

.hero-overlay h1 {
  font-size: 52px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  max-width: 900px;
  line-height: 1.2;
}

/* ===========================
   SERVICE CONTENT FIX
=========================== */

.service-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 20px 80px;
  font-size: 18px;
  line-height: 1.8;
}

.service-content p {
  margin-bottom: 28px;
  color: #333;
}

/* ===========================
   SERVICE GALLERY – TRISHA STYLE
=========================== */

.project-gallery {
  padding: 0 0 120px;
}

.project-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Image sizing FIX */
.project-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: none !important; /* kill zoom bug */
}

.project-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* ===========================
   RESPONSIVE FIXES
=========================== */

@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-overlay h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .service-hero {
    height: 65vh;
  }

  .hero-overlay h1 {
    font-size: 32px;
    padding: 0 20px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .project-grid img {
    height: 220px;
  }
}

/* ================= FOOTER – TRISHA STYLE ================= */

.site-footer {
  background: #6b2d5c; /* luxury purple */
  color: #ffffff;
  padding: 40px 8% 30px;
  font-family: "Segoe UI", sans-serif;
}

/* Top Statement */
.footer-top {
  text-align: center;
  font-size: 28px;
  font-family: serif;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* Columns */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-col p {
  font-size: 16px;
  line-height: 1.8;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 70px;
  font-size: 14px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    font-size: 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
  }
}


/* PROJECTS INTRO TEXT */
.projects-intro {
  max-width: 900px;
  margin: 25px auto 50px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  text-align: left;
}

/* PROJECTS SUBHEADING */
.projects-subtitle {
  text-align: center;
  font-size: 15px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6a1b5d; /* subtle luxury plum */
  margin-top: 12px;
  margin-bottom: 22px;
  font-weight: 500;
}

/* FEATURED PROJECTS FONT CHANGE */
#projects .section-title {
  font-family: "Playfair Display", serif;
  font-weight: 1000;
  letter-spacing: 0.5px;
}

/* ================= PROJECT IMAGE HOVER (FINAL WORKING FIX) ================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.projects-grid .gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;

  /* animation setup */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

/* Hover animation */
.projects-grid .gallery-img:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

/* ================= MOBILE NAVBAR ================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #b08d57;
  cursor: pointer;
}

/* Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  padding: 80px 30px;
  gap: 25px;
  transition: right 0.4s ease;
  z-index: 100000;
}

.mobile-menu a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* Mobile Rules */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= MOBILE SECTION SPACING ================= */
@media (max-width: 768px) {
  .section {
    padding: 60px 6%;
  }

  .about-section {
    padding: 70px 6%;
  }
}

/* ================= PROJECTS MOBILE FIX ================= */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-title {
    text-align: center;
    font-size: 30px;
  }

  .projects-subtitle {
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .projects-intro {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }
}

/* ================= MOBILE MENU VISIBILITY FIX ================= */

/* Hide mobile menu by default (DESKTOP) */
.mobile-menu,
.mobile-nav,
.sidebar-menu {
  display: none;
}

/* Show mobile menu ONLY on small screens */
@media (max-width: 768px) {
  .mobile-menu,
  .mobile-nav,
  .sidebar-menu {
    display: block;
  }

  /* Hide normal navbar links on mobile */
  .nav-links {
    display: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= MOBILE MENU LIST FIX ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: #0e0e0e;
  padding: 80px 30px;
  display: none;
  flex-direction: column;
  z-index: 100000;
}

/* Show menu */
.mobile-menu.active {
  display: flex;
}

/* Close button */
.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* ONE-BY-ONE MENU ITEMS */
.mobile-menu a {
  display: block;              /* 🔑 THIS FIXES THE SENTENCE ISSUE */
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 22px;         /* spacing between items */
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.mobile-menu a:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

/* ================= FOOTER REFINEMENT ================= */

.footer {
  background: #6b2d5c; /* your purple */
  color: #fff;
  text-align: center;
  padding: 80px 20px 40px;
}

/* Section blocks */
.footer .footer-block {
  margin-bottom: 36px; /* space between COMPANY & OFFICE */
}

/* HEADINGS: COMPANY / OFFICE */
.footer h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: rgb(3, 3, 3);
}

/* COMPANY LINKS */
.footer a {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px; /* 🔑 tight spacing */
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}

/* OFFICE TEXT */
.footer p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}

/* EMAIL */
.footer .footer-email {
  margin-top: 14px;
  font-size: 16px;
  opacity: 0.9;
}

/* COPYRIGHT */
.footer .footer-copy {
  margin-top: 50px;
  font-size: 14px;
  opacity: 0.6;
}

/* FIX: Ensure navbar always visible on mobile service pages */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.service-hero {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
}




