/* --- RESET & VARIABLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-gold: #c69c36;
  --primary-dark: #2a2a2a;
  --text-white: #ffffff;
  --kente-red: #be1e2d;
  --kente-green: #009746;
  --kente-yellow: #f1c40f;
  --kente-black: #000000;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* --- MAIN CONTAINER (Tablet/Mobile Simulation) --- */
.device-container {
  width: 100%;
  height: 100vh;
  max-width: 800px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-around;
}

/* --- KENTE PATTERN GENERATOR (CSS GRADIENT) --- */
/* Simulates the border pattern without needing an image */
.kente-pattern-h {
  height: 15px;
  width: 100%;
  background: url(/assets/KentePattern_top1.jpg);
}


/* --- HEADER --- */
header {
  padding: 1rem 2rem;
  text-align: left;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  width: 160px;
  height: auto;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-gold); /* Placeholder for logo img */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.logo-text h1 {
  font-size: 1.2rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text span {
  font-size: 0.9rem;
  color: var(--primary-gold);
  font-weight: bold;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background: url("/assets/Hero_image.jpg") center no-repeat;
  background-size: contain;
  text-align: center;
  color: white;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: antiquewhite;
}

.hero-2 {
  position: relative;
  /* background: url("/assets/hero2.jpg") center no-repeat; */
  background-size: contain;
  text-align: center;
  color: black;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;  
}

/* Dark overlay to make text readable */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h2, .hero-2 h2 {
  font-size: 3rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  width: 70%;
  margin: auto;
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0REM;
  
}
.time-unit {
  text-align: center;
}
.time-unit span {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
.time-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: 5px;
}


.hero,
.signup-section,
.philosophy {
  border: 1px solid var(--primary-gold);
}

.btn-container {
  width: 50%;
  background: url(/assets/KentePattern1.jpg);
  background-size: 85%;
  border-radius: 30px;
  background-position-x: 115px;
  position: relative;
  z-index: 2;
}

.kente-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 12px 10px;
  width: 70%;
  background: var(--primary-gold);
}
/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 600px) {
  .hero h2, .hero-2 h2  {
    font-size: 2rem;
  }
  .countdown {
    gap: 0.8rem;
  }

  .btn-container {
    width: 70%;
    background-position-x: 80px;
  }
  .time-unit span {
    font-size: 1.8rem;
  }
  .philosophy {
    justify-content: center;
    text-align: center;
  }
  .philosophy-content {
    margin-right: 0;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
  }
  .kente-pattern-v {
    width: 15px;
  } /* Thinner borders on mobile */
  .hero,
  .philosophy {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-size: cover;
  }
}
