:root{
  --coffee-brown: #6f4e37;
  --cream: #f5f3ea;
  --dark-green: #35523c;
  --accent: #b5884a;
  --nav-height: 64px;
}

/* Reset + base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--cream);
  color:var(--coffee-brown);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* prevent body scroll when mobile nav open */
body.nav-open{
  overflow:hidden
}

/* NAVBAR */
.site-header{
  position:fixed; 
  left:0; 
  right:0; 
  top:0; 
  z-index:1000
}

/* Default navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #2c2c2c;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  background: #2c2c2c;
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  background: #2c2c2c;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #6f4e37;
}

/* Hamburger menu default (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger:hover span {
  background: #6f4e37; /* Coffee brown */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #2c2c2c;
    flex-direction: column;
    align-items: center;
    width: 200px;
    display: none; /* hide menu by default */
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    display: flex; /* show when toggled */
  background: #2c2c2c;
  }

  .hamburger {
    display: flex; /* show hamburger on mobile */
  }
}


/* HERO (below nav) */
.hero{
  margin-top: var(--nav-height); /* keep below fixed nav */
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
  background-position: center;
  background-size: cover;
  color:#fff;
  text-align:center;
  padding:96px 20px 64px;
  position:relative;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(55,35,20,0.45);
  z-index:0;
}
.hero-content{position:relative; z-index:1; max-width:720px; margin:0 auto}
.hero-title{font-family:' ',serif; font-size:2.4rem; margin-bottom:12px}
.hero-story{font-size:1.1rem; margin-bottom:20px; line-height:1.5}

/* Buttons */

.button {
  display: inline-block;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #1ebe57; /* darker green on hover */
}


.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  padding:10px 20px;
  border-radius:28px;
  font-weight:600;
  transition:background .18s;
}
.btn:hover{
  background:var(--dark-green)
}
.btn-ghost{
  background:transparent; 
  border:2px solid rgba(255,255,255,0.18)
}

/* SERVICES / CARDS */
.services{
  display:flex; 
  flex-wrap:wrap; 
  gap:24px; 
  justify-content:center; 
  margin:48px auto; 
  max-width:1000px
}

.service-card{
  background:#fff; 
  border-radius:12px; 
  padding:22px; 
  min-width:220px; 
  max-width:260px; 
  text-align:center; 
  box-shadow:0 6px 18px rgba(0,0,0,0.06)
}

.service-card .icon{
  font-size:2rem; 
  margin-bottom:10px; 
  color:var(--accent)
}

.service-card h3{
  font-family:' ',serif; 
  margin:6px 0
}

/* PRODUCTS GRID */
.products-section{
  padding:28px 20px; 
  max-width:1100px; 
  margin:0 auto
}

.products-grid{
  display:grid; 
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); 
  gap:18px
}

.card{
  justify-content: center;
  text-align: center;
  padding: 0;  
  list-style-position: inside;
}

.card img{
  width:75%; 
  height:75%; 
  object-fit:cover; 
  border-radius:8px
}

.course-card{
  list-style-position: outside;
  padding: 0 20px;
  text-align: left;
  display: inline-block;
}

/* SPLIT SECTIONS */
.split-section{
  max-width:1100px; 
  margin:0 auto
}

.split{
  display:grid; 
  gap:32px; 
  grid-template-columns: repeat(2, 1fr);
  padding:28px 20px; 
  align-items:center; 
}

.split img{
  width:360px; 
  max-width:100%; 
  height:100%; 
  max-height:100%; 
  border-radius:12px; 
  object-fit:cover
}
.split-content{
  flex:1 1 320px
}
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/* PRICING */
.pricing{
  display:flex; 
  gap:12px; 
  flex-wrap:wrap; 
  margin-top:12px
}

.package{
  background:var(--cream); 
  border-radius:8px; 
  padding:12px 14px; 
  border:1px solid rgba(0,0,0,0.06)
}

/* CONTACT / FORM */
.contact-section,.newsletter,.social-proof{
  padding:28px 20px; 
  max-width:900px; 
  margin:0 auto
}

.application-form{
  padding-top: 50px;
  margin-top:18px; 
  flex-direction:column; 
  text-align: center;
  font-weight: bolder;
  gap:12px
}

.contact-form{
  background:#fff; 
  padding:18px; display: flex;
  flex-direction: column;
  border-radius:10px; 
  box-shadow:0 8px 20px rgba(0,0,0,0.06)
}

.contact-form input,.contact-form textarea{
  width:100%; 
  padding:10px; 
  border-radius:8px; 
  border:1px solid #ddd; 
  margin-bottom:12px
}

form {
      max-width: 400px;
      margin: 40px auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

/* FOOTER */
footer{background:var(--coffee-brown); color:#fff; text-align:center; padding:24px 16px; margin-top:30px}

/* SMALL DEVICES */
@media (max-width: 900px){
  .split{flex-direction:column}
}

/* NAV RESPONSIVE: mobile */
@media (max-width: 768px){
  .nav-links{ /* hidden off-canvas to the right */
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;
    background:var(--cream);
    flex-direction:column;
    padding:80px 16px;
    gap:16px;
    box-shadow:-6px 0 20px rgba(0,0,0,0.08);
    transition:right .25s ease;
    z-index:1100;
  }

  .nav-links.active{ right:0; }

  .nav-links a{ padding:10px 12px; display:block; border-radius:6px; color:var(--coffee-brown) }

  .hamburger{ display:flex; margin-left:8px; background:transparent; border:0 }

  /* show close style by inverting hamburger when open */
  .nav-links.active ~ .hamburger span { background: var(--coffee-brown); }

  /* reduce hero padding on small screens */
  .hero{ padding:64px 16px 48px; }
  .hero-title{ font-size:1.6rem; }
  .hero-story{ font-size:1rem; }
  .card img{ height:180px; }
}

/* EXTRA SMALL PHONES */
@media (max-width: 420px){
  .hero{ padding:52px 12px 36px }
  .hero-title{ font-size:1.35rem }
  .service-card{ padding:18px }
  .products-grid{ gap:12px }
}

.pic-album {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* responsive grid */
  gap: 15px;
  padding: 20px;
}

.pic-group img {
  width: 50%;
  height: 50%;
  object-fit: cover; /* crop images neatly */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pic-group img:hover {
  transform: scale(1.05); /* zoom effect on hover */
}

hr {
  border: none;           /* remove default */
  height: 4px;            /* thickness (boldness) */
  background-color: #6f4e37; /* coffee brown color */
  border-radius: 2px;     /* smooth edges */
  margin: 20px 0;         /* spacing */
}