/* RESET */
* {
  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;
  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: 60px;
  font-weight: bold;
  color: #001f3f; /* Navy blue */
  text-decoration: none;
}

.logo:hover {
  color: #001f3f;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.lang {
  font-weight: 600;
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(90deg);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  display: flex;
  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;

  /* Hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-menu.active {
  max-height: 500px; /* large enough for menu */
  opacity: 1;
}

.mobile-menu a {
  text-decoration: none;
  color: #111;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ================= 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;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none; /* hide desktop nav */
  }

  .hamburger {
    display: block; /* show hamburger */
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-image {
    width: 80%;
    margin-top: 20px;
  }

  .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;
  }
}
/* Global font style */
.mibu-trending {
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* 1. Hero Story */
.mibu-hero {
  height: 90vh;
  background: url('../Images/Y1.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mibu-hero .overlay {
  background: rgba(0,0,0,0.55);
  color: #fff;
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  animation: fadeIn 1.5s ease;
}

.mibu-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.mibu-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

/* 2. Lifestyle Video */
.mibu-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.mibu-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mibu-video .video-text {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background: rgba(0,0,0,0.3);
  animation: fadeIn 2s ease;
}

.mibu-video h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.mibu-video p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* 3. Moodboard Grid */
.mibu-moodboard {
  padding: 60px 5%;
  text-align: center;
}

.mibu-moodboard h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.mood {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.mood img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.mood:hover img {
  transform: scale(1.1);
}

.mood p {
  position: absolute;
  bottom: 15px; left: 0; right: 0;
  color: white;
  font-size: 1rem;
  text-shadow: 0px 2px 8px rgba(0,0,0,0.7);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .mibu-hero h1 { font-size: 2rem; }
  .mibu-video h2 { font-size: 2rem; }
  .mibu-moodboard h2 { font-size: 2rem; }
}
/* Add for smooth reveal */
.mood, .overlay, .video-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Campaign Video Grid */
.mibu-video-grid {
  text-align: center;
  padding: 60px 6%;
  background: #fff;
}

.mibu-video-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #111;
}

.mibu-video-grid .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  background: #000;
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  text-align: left;
}

.video-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.video-caption p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #ddd;
}

/* Tablet */
@media (max-width: 1024px) {
  .mibu-video-grid h2 {
    font-size: 2.2rem;
  }
  .mibu-video-grid .subtitle {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mibu-video-grid {
    padding: 40px 5%;
  }
  .mibu-video-grid h2 {
    font-size: 1.8rem;
  }
  .video-caption h3 {
    font-size: 1rem;
  }
  .video-caption p {
    font-size: 0.8rem;
  }
}
