* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    color: #111;
    padding-top: 80px; /* Matches header height */
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* or your actual header height */
    background:white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

main {
    padding-top: 80px; /* same as header height */
}


.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color:#1D2D50;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}


.nav-links.active {
    display: flex;
}

.lang {
    font-weight: 600;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: bold;
    color: #001f3f; /* Navy blue */
    text-decoration: none; /* Removes underline */
}

.logo:hover {
    color: #001f3f; /* Elegant beige-gold on hover */
}
/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
}
.mobile-menu a {
    text-decoration: none;
    color: #111;
    padding: 10px 0;
}


.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background-image: url('../Images/C3.jpg'); /* ✅ First image loads instantly */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    animation: slideshow 60s infinite linear;
    z-index: -1;
    opacity: 0.85;
    height: 100%;
    width: 100%;
}

/* Slideshow keyframes */
@keyframes slideshow {
    0%, 20% { background-image: url('../Images/C3.jpg'); }
    20.01%, 40% { background-image: url('../Images/G2.jpg'); }
    40.01%, 60% { background-image: url('../Images/C4.jpg'); }
    60.01%, 80% { background-image: url('../Images/G1.jpg'); }
    80.01%, 100% { background-image: url('../Images/G4.jpg'); }
}

.hero-content {
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 2000px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* ✅ Makes text stand out */
    
}

.hero-content p {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8); /* ✅ Makes text stand out */
    color: whitesmoke;
    
}

.shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.shop-btn:hover {
    background: #333;
}



/*--Split section--*/
.split-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: stretch; /* 🔹 Match both sides' heights */
}

.split-left,
.split-right {
    flex: 1;
    min-width: 300px;
    display: flex;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%; /* Match parent height */
}

.image-overlay img {
    width: 100%;
    height: 100%; /* Fill height of container */
    object-fit: cover; /* No distortion */
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(18px, 2vw, 28px);
    white-space: nowrap;
}

.split-right {
    background-color: #8B2E17;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-box {
    text-align: center;
}

.content-box a {
    color: white;
    text-decoration: underline;
    display: inline-block;
    margin-top: 15px;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        height: auto;
    }

    .image-overlay img {
        height: auto;
    }
}


.instagram-section {
    background-color: #f8f3eb;
    padding: 50px 20px;
    text-align: center;
}

.instagram-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #3b3b3b;
    margin-bottom: 30px;
}

.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.image-grid img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    
    /* Force normal colors */
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    background-blend-mode: normal !important;
}

.img-wrapper {
    width: 250px;
    aspect-ratio: 3 / 4; /* same height for all */
    overflow: hidden;
    border-radius: 8px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop evenly */
    display: block;
    transition: transform 0.3s ease;
}

.img-wrapper img:hover {
    transform: scale(1.05);
}
/* Info Block Section */
.info-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}

.info-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-link {
    font-size: 1rem;
    color: orangered;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.info-link:hover {
    border-color: orangered;
}

.info-photo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.info-photo img {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
}
.fashion-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px;
    flex-wrap: wrap; /* Makes it responsive */
}

.fashion-image {
    flex: 1;
    min-width: 300px;
}

.fashion-image img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.fashion-text {
    flex: 1;
    min-width: 300px;
}

.fashion-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.fashion-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}


@media (max-width: 900px) {
    .info-block {
        flex-direction: column;
        text-align: center;
    }
    .info-text {
        order: 2;
    }
    .info-photo {
        order: 1;
    }
}





/*--- Footer--*/
  .footer {
  background: white;
  border-top: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  flex-wrap: wrap;
}

.footer-section {
  min-width: 150px;
}

.footer-section h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #111;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  background: #d8ff3f;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-top: 10px;
}

.footer-bottom a {
  color: #111;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 1.2rem;
  color: #111;
}
/*--fashion-section--*/


/* Responsive */
@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
    }
    .hero-image {
        width: 80%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
.image-grid img {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background-blend-mode: normal !important;
    isolation: isolate; /* prevents parent blending */
}

/* =====================
   MOBILE & TABLET FIXES
   ===================== */
@media screen and (max-width: 1024px) {
    header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .split-section {
        flex-direction: column;
    }

    .split-left, .split-right {
        min-width: 100%;
        height: auto;
    }

    .image-overlay img {
        height: auto;
    }

    .info-block {
        flex-direction: column;
        padding: 30px 20px;
    }

    .fashion-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .fashion-image img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    /* Hide desktop menu and show hamburger */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Mobile dropdown menu */
    .mobile-menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 80px;
        right: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 15px;
        border-radius: 8px;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    /* Adjust hero text */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 2.2rem;
    }

    .info-photo img {
        max-width: 100%;
    }

    .image-grid img {
        width: 100%;
        height: auto;
    }
}
/* =========================
   MIBU CAMPAIGN SECTION
========================= */
.mibu-campaign {
  padding: 60px 20px;
  text-align: center;
  background: #fff; /* you can change to light grey or dark depending on theme */
}

.mibu-campaign h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

.mibu-campaign .subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  text-align: left;
}

.video-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.video-caption p {
  font-size: 0.9rem;
  color: #ddd;
}

/* =========================
   RESPONSIVENESS
========================= */

/* Tablets */
@media (max-width: 992px) {
  .mibu-campaign h2 {
    font-size: 1.8rem;
  }
  .mibu-campaign .subtitle {
    font-size: 0.95rem;
  }
  .video-caption h3 {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mibu-campaign {
    padding: 40px 15px;
  }
  .mibu-campaign h2 {
    font-size: 1.5rem;
  }
  .mibu-campaign .subtitle {
    font-size: 0.9rem;
  }
  .video-caption {
    padding: 10px;
  }
  .video-caption h3 {
    font-size: 0.95rem;
  }
  .video-caption p {
    font-size: 0.8rem;
  }
}

