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

body {
  font-family: "Limelight", serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ================= HERO ================= */
.hero-slider {
  height: 100vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  z-index: 10;
}

.hero-overlay h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
}

.hero-overlay h2 {
  font-size: clamp(1.2rem, 3vw, 3rem);
  font-weight: 300;
}

.mob{
 display: none;
}



/* Desktop logo in top-left, independent of nav */
.desktop-logo {
  position: absolute;
  /* top: 20px;
  left: 20px; */
  top: 10%;
  left: 40%;

  z-index: 30; /* above slides */
}

.desktop-logo img {
  /* height: 90px; */ /* adjust to your preference */
  display: flex;
  justify-content: center; /* Centers horizontally */
  /* Optional: Set a specific height for the container if needed */
  /* height: 500px; */
  height: 125px;
  width: auto;
}

/* Hide desktop logo on mobile */
@media (max-width: 768px) {
  .desktop-logo {
    display: none;
  }
  .mobile-banner img{
  display: flex;
  width:65%;
  padding-top: 100px;
}
.mob {
  display: flex;
}
.mob img{
  display: flex;
  width: 80%;
  position: absolute;
  top: 13%;
  left: 11%; 

/*  top: 90%;
  left: 15%; */
}

}

/* ================= NAV ================= */
.hero-nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  z-index: 20;
}

.hero-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;

  /* ⬆️ DOUBLED SIZE */
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);

  /* ✨ SHADOW FOR CONTRAST */
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 1px 1px rgba(0, 0, 0, 0.8);

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-nav a {
    font-size: 2.2rem;
  }
}


/* Hamburger */
.menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  /*z-index: 10;*/
  z-index: 30;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* ================= FEATURED ================= */
.featured-work {
  /* padding: 80px 20px; */
  padding: 20px 20px;
  text-align: center;
  font-size: 1.5rem;
  padding:10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
  padding-top:10px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ================= CENTERED DIV ================ */
.flex-container {
    height: 100%;    
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30%;
    background-image: url('../images/temp4.webp');
    background-repeat: no-repeat;
}
.row {
    width: auto;    
}
.flex-item {   
    padding: 5px;
    width: auto;
    height: auto;
    margin: 10px;
    line-height: 20px;
    color: black;
    font-weight: bold;
    font-size: 3em;
    text-align: center;
}

/* ================= TESTIMONIAL ================= */
.testimonial {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.testimonial-slider {
  position: relative;
}

/* Slides */
.testimonial-slide {
  display: none;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.6;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

/* Dots */
.testimonial-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: #111;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= CTA ================= */
.discover-section {
  background: url('../images/placeholderCTA.webp') center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

.discover-section h2 {
  font-size: clamp(2rem,5vw,3.5rem);
}

.discover-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

/* ================= SOCIAL ================= */
.social-strip {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 10px;
}

.social-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.social-handle {
    color: #fff;
  text-decoration: none;
  font-weight: 500;

  /* ⬆️ DOUBLED SIZE */
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);

  /* ✨ SHADOW FOR CONTRAST */
  text-shadow:
    0 2px 6px rgba(0,0,0,0.6),
    0 1px 1px rgba(0,0,0,0.8);

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-handle a:hover,
.social-handle a:focus-visible{
    opacity: 0.85;
  transform: translateY(-2px);
}
/* ========================= */
/* FOOTER */
.site-footer {
  background: linear-gradient(to top, #0a0a0a, #121212);
  color: #b5b5b5;
  padding: 100px 20px 40px;
  font-size: 0.95rem;
}

/* Layout */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Brand */
.footer-brand h3 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #888;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-brand img {
  width: 115%;  
}

.footer-tagline {
  font-size: 0.9rem;
  color: #888;
  max-width: 260px;
  line-height: 1.6;
}

/* Columns */
.footer-column h4 {
  color: #fff;
  font-size: 2.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  font-size: 2em;
}

.footer-column li {
  margin-bottom: 10px;
}

/* Links – NO BLUE, NO UNDERLINE */
.footer-column a {
  color: #aaa;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* Elegant underline on hover */
.footer-column a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

/* Columns */
.footer-column p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}


.footer-column a:hover {
  color: #fff;
}

.footer-column a:hover::after {
  width: 100%;
}

/* Phone */
.footer-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Bottom */
.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 2rem;
  color: #777;
}

/* ========================= */
/* MOBILE */
@media (max-width: 900px) {
  
  .featured-work {
  /* padding: 80px 20px; */
  padding: 20px 20px;
  text-align: center;
  font-size: 0.95rem;
  padding:10px;
}
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

/* Brand */
.footer-brand h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #888;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-brand img {
  width: 80%;  
}

.footer-tagline {
  font-size: 0.9rem;
  color: #888;
  max-width: 260px;
  line-height: 1.6;
}

/* Columns */
.footer-column h4 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  font-size: 2em;
}

  .footer-tagline {
    margin: auto;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .hero-nav {
    flex-direction: column;
    background: rgba(0,0,0,.95);
    height: 100vh;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform .4s ease;
  }

  .hero-nav.open {
    transform: translateY(0);
  }
}

/* =============== MOBILE ================== */
@media (max-width: 768px) {
  .hero-nav.open ~ .hero-overlay {
    display: none;
  }
}

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

  .testimonial {
    padding: 60px 20px;
  }

  .testimonial-slider {
    position: relative;
    min-height: auto;
    padding-top: 0;
  }

  .testimonial-slide {
    position: relative;
    inset: auto;
    opacity: 0;
    transform: none;
    transition: opacity 0.6s ease;
    margin-bottom: 30px;
  }

  .testimonial-slide.active {
    opacity: 1;
  }

  .testimonial-dots {
    margin-top: 20px;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

/* =========================
   MOBILE NAV IMAGE (CORRECT)
========================= */

/* Hidden everywhere by default */
.mobile-nav-image {
  display: none;
}

@media (max-width: 768px) {

  /* Only show image when menu is OPEN */
  .hero-nav.open .mobile-nav-image {
    display: block;
    margin-bottom: 24px;
  }

  .mobile-nav-image img {
    width: 385px;
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  }

  .hero-nav {
    align-items: center;
    text-align: center;
  }
}

.mobile-nav-image {
  animation: fadeIn 0.6s ease;
}

@media (max-width: 768px) {
  .hero-nav.open .mobile-nav-image {
    animation: fadeDown 0.5s ease;
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 768px) {
  .hero-nav {
    align-items: center;
    text-align: center;
  }
}