*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', sans-serif;
  overflow-x:hidden;
  background:white;
  color:#222;
}

/* ─── HEADER ─────────────────────────────────────── */

header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:12px 8%;

  background:
  linear-gradient(rgba(20,20,20,0.85),
  rgba(20,20,20,0.85)),
  url('weaving.jpg');

  background-size:cover;
  background-position:center;

  border-bottom:2px solid #c89b3c;

  backdrop-filter:blur(6px);
}

.logo{
  font-size:38px;
  font-weight:700;
  color:white;
  font-family:'Cinzel', serif;
  letter-spacing:4px;
}

.nav-links{
  display:flex;
  list-style:none;
  align-items:center;
}

.nav-links li{
  margin-left:30px;
  position:relative;
}

.nav-links a{
  text-decoration:none;
  color:white;
  transition:0.3s;
  font-weight:500;
}

.nav-links a:hover,
.nav-links a.active-link{
  color:#c89b3c;
}

/* ─── DROPDOWN ────────────────────────────────────── */

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:4px;
  cursor:pointer;
}

.arrow{
  font-size:12px;
  transition:transform 0.3s;
  display:inline-block;
}

.dropdown:hover .arrow{
  transform:rotate(180deg);
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  background:rgba(20,20,20,0.95);
  border:1px solid #c89b3c;
  border-radius:8px;
  min-width:170px;
  list-style:none;
  padding:8px 0;
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
  backdrop-filter:blur(10px);
  z-index:999;
}

/* small top triangle pointer */
.dropdown-menu::before{
  content:'';
  position:absolute;
  top:-7px;
  left:18px;
  border-left:7px solid transparent;
  border-right:7px solid transparent;
  border-bottom:7px solid #c89b3c;
}

.dropdown-menu li{
  margin:0;
}

.dropdown-menu li a{
  display:block;
  padding:10px 20px;
  color:#f0e6cc;
  font-size:14px;
  font-weight:500;
  transition:0.25s;
  white-space:nowrap;
}

.dropdown-menu li a:hover{
  background:rgba(200,155,60,0.15);
  color:#c89b3c;
  padding-left:26px;
}

.dropdown:hover .dropdown-menu{
  display:block;
  animation:fadeDropdown 0.2s ease forwards;
}

@keyframes fadeDropdown{
  from{opacity:0;transform:translateY(-6px);}
  to{opacity:1;transform:translateY(0);}
}

/* ─── MOBILE BUTTON ──────────────────────────────── */

.menu-btn{
  display:none;
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
  color:white;
}

/* ─── HEADINGS ───────────────────────────────────── */

.hero-content h1,
.story-content h1,
.split-content h2,
.why-text h2,
.icheku-content h2,
.culture-title h1,
footer h2{
  font-family:'Cinzel', serif;
  letter-spacing:2px;
}

/* ─── BUTTON ─────────────────────────────────────── */

.btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 38px;

  background:#c89b3c;

  color:white;
  text-decoration:none;

  border-radius:50px;

  transition:0.4s;

  font-weight:600;

  letter-spacing:1px;
}

.btn:hover{
  background:#9b7427;
  transform:translateY(-3px);
}

/* ─── HERO ───────────────────────────────────────── */

.hero{
  position:relative;
  height:100vh;

  background-image:url('1.jpg');

  background-size:cover;
  background-position:center;

  animation:slideShow 40s infinite;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
}

/* PROJECTS / ABOUT PAGE HERO */
.page-hero{
  position:relative;
  height:55vh;

  background-image:url('africa.jpg');
  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:relative;
  z-index:2;
  color:white;
  max-width:850px;
  padding:20px;
}

.hero-content h1{
  font-size:68px;
  margin-bottom:20px;
  line-height:1.2;
  font-family:'Cinzel', serif;
  letter-spacing:2px;
}

.hero-content p{
  font-size:22px;
  margin-bottom:30px;
  line-height:1.8;
}

/* ─── HERO SLIDESHOW ─────────────────────────────── */

@keyframes slideShow{

  0%{background-image:url('18.jpg');}
  10%{background-image:url('2.jpg');}
  15%{background-image:url('17.jpg');}
  20%{background-image:url('13.jpg');}
  25%{background-image:url('16.jpg');}
  30%{background-image:url('4.jpg');}
  35%{background-image:url('19.jpg');}
  40%{background-image:url('5.jpg');}
  45%{background-image:url('12.jpg');}
  50%{background-image:url('6.jpg');}
  60%{background-image:url('7.jpg');}
  70%{background-image:url('8.jpg');}
  80%{background-image:url('9.jpg');}
  90%{background-image:url('10.jpg');}
  100%{background-image:url('11.jpg');}

}

/* ─── WHY SECTION ────────────────────────────────── */

.why-us{
  padding:70px 8%;

  display:flex;
  align-items:center;
  gap:50px;

  flex-wrap:wrap;
}

.why-us.alt-bg{
  background:#f9f4ec;
}

.why-image{
  flex:1;
}

.why-image img{
  width:100%;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.why-text{
  flex:1;
}

.why-text.full-width{
  flex:none;
  width:100%;
  max-width:860px;
  margin:0 auto;
}

.why-text h2{
  font-size:45px;
  margin-bottom:20px;
  color:#111;
}

.why-text p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:20px;
  color:#444;
}

/* ─── CULTURE BANNER ─────────────────────────────── */

.culture-header{
  position:relative;
  height:40vh;
  background-image:url('africa.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.culture-header .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.culture-title{
  position:relative;
  z-index:2;
  color:white;
}

.culture-title h1{
  font-size:58px;
  margin-bottom:10px;
}

.culture-title p{
  font-size:18px;
  letter-spacing:3px;
  opacity:0.85;
  font-family:'Montserrat', sans-serif;
}

/* ─── STORY HERO ─────────────────────────────────── */

.story-hero{
  position:relative;
  width:100%;
  height:70vh;
  overflow:hidden;
}

.story-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-overlay{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.35);
}

.story-content{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  z-index:2;

  color:white;

  text-align:center;

  width:90%;
  max-width:900px;
}

.story-content h1{
  font-size:65px;
  margin-bottom:25px;
  font-family:'Cinzel', serif;
  letter-spacing:2px;
}

.story-content p{
  font-size:22px;
  line-height:1.8;
}

/* ─── SPLIT SECTION ──────────────────────────────── */

.split-section{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:60px;

  padding:80px 8%;

  position:relative;

  flex-wrap:wrap;
}

.reverse{
  flex-direction:row-reverse;
}

.split-image{
  flex:1;
  min-width:300px;
  max-width:480px;
}

.split-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  transition:0.4s;
}

.split-image img:hover{
  transform:scale(1.02);
}

.split-content{
  flex:1;
  min-width:300px;
  position:relative;
}

.split-content h2{
  font-size:38px;
  margin-bottom:18px;
  color:#111;
}

.split-content p{
  font-size:17px;
  line-height:1.85;
  color:#444;
  margin-bottom:10px;
}

/* ─── INLINE LINK BUTTON ─────────────────────────── */

.side-tab{
  position:static;
  transform:none;
  margin-top:22px;
}

.side-tab a{
  display:inline-block;
  text-decoration:none;

  background:#c89b3c;
  color:white;

  padding:12px 32px;

  border-radius:50px;

  font-weight:bold;
  font-size:15px;
  letter-spacing:0.5px;

  transition:0.3s;
}

.side-tab a:hover{
  background:#9b7427;
  transform:translateY(-3px);
}

/* ─── ICHEKU SECTION ─────────────────────────────── */

.icheku-section{
  display:flex;
  min-height:55vh;
  width:100%;
}

.icheku-slider{
  flex:1;
  position:relative;

  background-image:url('21.jpg');

  background-size:cover;
  background-position:center;

  animation:ichekuSlide 30s infinite;
}

.icheku-overlay{
  position:absolute;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.35);
}

.icheku-content{
  flex:1;

  background:#f8f3ea;

  display:flex;
  flex-direction:column;
  justify-content:center;

  padding:60px;

  color:#222;
}

.icheku-content h2{
  font-size:52px;
  margin-bottom:25px;
  font-family:'Cinzel', serif;
  letter-spacing:2px;
  color:#9b7427;
}

.icheku-content p{
  font-size:20px;
  line-height:1.9;

  margin-bottom:30px;
}

/* ─── ICHEKU SLIDESHOW ───────────────────────────── */

@keyframes ichekuSlide{

  0%{background-image:url('21.jpg');}
  20%{background-image:url('22.jpg');}
  40%{background-image:url('23.jpg');}
  60%{background-image:url('24.jpg');}
  80%{background-image:url('27.jpg');}
  100%{background-image:url('18.jpg');}

}

/* ─── FOOTER ─────────────────────────────────────── */

footer{

  background:#111;

  border-top:3px solid #c89b3c;

  color:white;

  text-align:center;

  padding:20px 15px;
}

footer h2{
  font-size:26px;
  margin-bottom:8px;

  letter-spacing:3px;
}

footer p{
  font-size:14px;
  opacity:0.8;
}

/* ─── MOBILE ─────────────────────────────────────── */

@media(max-width:768px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:0;
    width:100%;
    background:rgba(15,15,15,0.97);

    flex-direction:column;
    display:none;
    padding:20px 0;
    align-items:flex-start;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links li{
    margin:0;
    width:100%;
    padding:14px 30px;
    border-bottom:1px solid rgba(200,155,60,0.15);
  }

  .nav-links a{
    font-size:15px;
  }

  /* mobile dropdowns */
  .dropdown-menu{
    position:static;
    background:rgba(40,30,10,0.95);
    border:none;
    border-left:3px solid #c89b3c;
    border-radius:0;
    padding:4px 0;
    display:none;
    box-shadow:none;
    margin-top:8px;
    margin-left:10px;
  }

  .dropdown-menu::before{
    display:none;
  }

  .dropdown.mobile-open .dropdown-menu{
    display:block;
  }

  .dropdown-menu li{
    padding:0;
    border:none;
  }

  .dropdown-menu li a{
    padding:9px 20px;
    font-size:13px;
  }

  .hero-content h1,
  .story-content h1{
    font-size:38px;
  }

  .hero-content p,
  .story-content p{
    font-size:18px;
  }

  .projects-hero .hero-content h1{
    font-size:34px;
  }

  .culture-title h1{
    font-size:38px;
  }

  .why-us{
    flex-direction:column;
  }

  .split-section,
  .reverse{
    flex-direction:column;
  }

  .split-content h2{
    font-size:34px;
  }

  .split-content p{
    font-size:18px;
  }

  .side-tab{
    margin-bottom:20px;
  }

  .icheku-section{
    flex-direction:column;
  }

  .icheku-slider{
    min-height:300px;
  }

  .icheku-content{
    padding:40px 25px;
  }

  .icheku-content h2{
    font-size:38px;
  }

}