/* This is the whole page */
body {
    background-color: #f2f0ef;
    color: #b8aca0;
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
}

/* The big heading */
h1 {
    font-size: 80px;
    color: #040300;
    text-align: center;
    margin-top: 200px;
    letter-spacing: 10px;
}

/* The paragraph */
p{
    font-size: 50px;
    text-align: center;
    color: #060400;
}

/* NAVIGATION */
nav{
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly ;
    align-items: center;
    padding: 5px 0px;
    height: 65px;
    background-color: rgba(244, 243, 241, 0.9);
    z-index: 100;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: #5e4210;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul a:hover {
    color: #c9a96e;
}

/* HERO */
.hero {
    height: 100vh;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

/* BUTTON */
.btn {
    margin-top: 100px;
    padding: 15px 40px;
    background-color: #b94b2c;
    color: #f5efe4;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 30px;
}

.btn:hover {
    background-color: #c9a96e;
    color: #1a1008;
}

/* ABOUT SECTION */
#about {
    padding: 100px 50px;
    background-color: #eeeff2;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image img {
    width: 480px;
    height: 680px;
    object-fit: cover;
}

.section-label {
    font-size: 36px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e8d9c0;
    margin-bottom: 15px;
    text-align: center;
}

.about-text h2 {
  font-size: 30px;
  color: #a27115;
  margin-bottom: 25px;
  line-height: 1.1;
  text-align: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #785416;
  margin-bottom: 15px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.stat-num {
  display: block;
  font-size: 42px;
  color: #b94b2c;
  font-weight: bold;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #684b13;
  margin-top: 8px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fffffe;
    min-width: 180px;
    padding: 10px 0;
    z-index: 200;
    flex-direction: column;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #5c3d08;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.dropdown-menu li a:hover {
  background-color: rgba(244, 241, 240, 0.3);
  color: #c9a96e;
}

/* CONTACT SECTION */
#contact {
    background-color: #000103;
    text-align: center;
    padding: 100px 50px;
}

#contact h2{
    font-size: 48px;
    color: #e8d9c0;
    margin-bottom: 20px;
}

.contact-email {
    text-align: center;
    margin-bottom: 10px;
}

.contact-email a {
  color: #e8d9c0;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 1px;
}

.contact-email a:hover {
  color: #e8d9c0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.social-links a {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid rgba(201,169,110,0.4);
  color: #e8d9c0;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: #393837;
  color: #f5efe4;
  border-color: #b69459;
}

.footer-note {
  font-size: 13px;
  color: rgba(245,239,228,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* COMING SOON PAGE */
.coming-soon {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f9f8f7;
  padding: 0 50px;
}

.coming-soon h1 {
  font-size: 90px;
  color: #c9a96e;
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 20px;
}

.coming-text {
  font-size: 18px;
  color: #c9a96e;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ================================
   MOBILE RESPONSIVE STYLES
   ================================ */
@media (max-width: 768px) {

  /* NAV - stack logo and links */
  nav {
    padding: 0 15px;
    flex-wrap: wrap;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  nav ul {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul a {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .logo img {
    height: 50px;
  }

  /* HERO - smaller text */
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
    padding: 0 20px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 12px;
  }

  /* ABOUT - stack vertically */
  .about-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .about-image img {
    width: 100%;
    height: 300px;
  }

  .about-text h2 {
    font-size: 32px;
    text-align: left;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 30px;
  }

  /* ABOUT SECTION padding */
  #about {
    padding: 60px 20px;
  }

  /* CONTACT */
  #contact {
    padding: 60px 20px;
  }

  #contact h2 {
    font-size: 32px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* COMING SOON PAGE */
  .coming-soon h1 {
    font-size: 50px;
  }

  .coming-text {
    font-size: 15px;
    padding: 0 20px;
  }
}