
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; background-color: #fff; line-height: 1.6; }
.navbar { background-color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 8%; }
.logo { display: flex; align-items: center; }
.logo img { height: 70px; margin-right: 10px; }
.logo h1 { color: #1a1a1a; font-size: 22px; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #ad945c; }
.hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; background-color: #ad945c; color: #fff; padding: 60px 8%; }
.hero-text { flex: 1; min-width: 300px; margin-right: 40px; }
.hero-text h2 { font-size: 2rem; margin-bottom: 20px; }
.hero-text p { margin-bottom: 20px; color: #e0e0e0; }
.btn-primary { display: inline-block; background-color: black; color: #fff; padding: 12px 25px; border-radius: 25px; text-decoration: none; font-weight: bold; transition: background 0.3s; }
.btn-primary:hover { background-color: #c48889; }
.hero-image { flex: 1; min-width: 280px; }
.hero-image img { width: 100%; border-radius: 10px; }
.page-section { padding: 60px 8%; background-color: #f9f9f9; }
.page-section h2 { font-size: 2rem; color: #0c1234; margin-bottom: 20px; }
.page-section p { max-width: 800px; color: #333; }
footer { text-align: center; padding: 20px; background-color: #0c1234; color: #fff; font-size: 14px; }
/* --- GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f7f8fa;
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

/* --- NAVBAR --- */
.navbar {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

.logo h1 {
  color: #1a1a1a;
  font-size: 22px;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul.nav-links li a {
  color: #000000;
  padding: 0.5rem;
}

nav ul.nav-links li a.active {
  border-bottom: 2px solid #ad945c;
}

/* Hamburger */
.nav-toggle {
  display:none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
}

/* --- HERO --- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h2 { color: black; margin-bottom: 1rem; }

.hero-text p { margin-bottom: 1rem; }

.hero-text .btn-primary {
  display: inline-block;
  background-color: #ad945c;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  font-weight: 500;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-image h1 {
  color: #000000;
  text-align: center;
  text-decoration: wavy;
  font-style: italic;
  font-size: 40px;
  font-family: Futura, sans-serif;
  margin-top: 1rem;
}

/* --- FOOTER --- */
footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 1rem;
}

footer div { max-width: 900px; margin: 0 auto; }

footer a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 5px;
}

footer img { vertical-align: middle; }

footer hr { border:0; height:1px; background:#ffffff; width:70%; margin:1rem auto; }

footer p { color: #dcdcdc; }

/* --- RESPONSIVE --- */
@media(max-width: 768px){
  .nav-toggle { display: block; }

  nav { width: 100%; }

  .nav-links {
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
  }
  
  .nav-links.expanded {
    max-height: 500px; /* enough to show all links */
  }
  

  .nav-links.expanded li a { color: #000000 !important; }
  
  .hero { flex-direction: column; text-align: center; }
  .hero-image { margin-top: 1rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background-color: #fff; }
  .hero { flex-direction: column; }
  .hero-text { margin-right: 0; margin-bottom: 30px; }
}
