/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

/* Header / Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 140px; /* thinner header */
  background: black;
  display: flex;
  align-items: center;
  justify-content: center; /* logo stays centered */
  padding: 0 20px;
  z-index: 1000;
  transition: padding 0.3s ease, background 0.3s ease, height 0.3s ease;
}

header.shrink {
  height: 50px; /* slightly smaller when scrolled */
  background: #000;
}

/* Logo */
.logo {
  position: absolute; /* center logo on page */
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  max-width: 180px; /* keep logo size same */
  width: 100%;
  height: auto;
  transition: max-width 0.3s ease;
}

/* Nav */
nav {
  position: absolute; /* move nav links to right side */
  right: 20px; /* far right from logo */
  display: flex;
  align-items: center;
  height: 100%; /* vertically center */
}

nav ul {
  display: flex;
  align-items: center; /* vertical center */
  gap: 2rem; /* spacing between links */
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #cfaf72;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #fff;
}

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #cfaf72;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-links.active {
  display: block;
}

/* Promo Section */
.promo {
  color: #cfaf72;
  text-align: left;
  padding: 60px 90px;
  max-width: 1200px;
  margin: 160px auto 0; /* more gap between header/nav and promo */
  border-radius: 10px;
}

.promo-card {
  background: #f8f8f8;
  color: #111;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  align-items: center;
  max-width: 1000px;
  margin: auto;
}

.promo-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

.promo-text {
  flex: 1;
}

.promo-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.promo-text p {
  margin-bottom: 20px;
  color: #333;
}

.promo-btn {
  display: inline-block;
  background: black;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.promo-btn:hover {
  background: #cfaf72;
  color: black;
}

/* About Us */
.about-us {
  padding: 4rem 2rem; /* reduced top/bottom padding for less space */
  background: #fff;
  color: #111;
  text-align: center;
}

.about-us h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-us .intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #444;
}

.about-us .brand {
  font-weight: 700;
  color: #b48c58; /* accent color (gold-like) */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  text-align: left;
  line-height: 1.8;
}

.about-text h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #222;
}

.about-text ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.about-text li {
  margin-bottom: 1rem;
}

.about-text .highlight {
  margin-top: 2rem;
  font-weight: 600;
  color: #b48c58;
  font-size: 1.1rem;
}

.about-image img {
  width: 60%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-us .about-grid {
    display: block; /* stack content vertically */
    text-align: center; /* center text */
  }

  .about-us .about-image {
    display: none; /* hide image */
  }

  .about-us .about-text {
    width: 100%; /* take full width */
    padding: 0 1rem; /* nice padding around text */
    font-size: 1rem; /* readable font size */
    line-height: 1.7; /* comfortable spacing */
  }

  .about-us .about-text h2 {
    font-size: 1.4rem; /* slightly smaller subheadings */
    margin-top: 1.5rem;
  }

  .about-us .intro {
    font-size: 1.1rem; /* slightly smaller intro */
    margin-bottom: 2rem;
  }

  .about-text ul {
    padding-left: 1rem; /* smaller indent */
  }

  .about-text li {
    margin-bottom: 0.8rem; /* tighter spacing between list items */
  }

  .about-text .highlight {
    font-size: 1.05rem; /* keeps highlight visible but not huge */
  }
}

/* Contact */
.contact-info {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f5c518;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #000;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-details {
  margin: 25px 0;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #f5c518;
}

.social {
  margin-top: 20px;
}

/* Footer */
footer {
  background-color: #000;
  color: #f5c518;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
}

/* Fix anchor links for fixed header */
section {
  scroll-margin-top: 100px;
}

/* Responsive (Mobile-specific navbar + promo spacing) */
@media(max-width: 768px) {
  /* Make the header/nav smaller in height on phones */
  header {
    height: 50px;
    padding: 0 16px;       /* slimmer header */
  }

  .logo img {
    max-width: 180px;        /* keep logo size same */
  }

  header.shrink {
    height: 45px;       /* keep it compact when scrolled */
  }

  /* Keep dropdown (if opened) just below the smaller header */
  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: black;
    position: absolute;
    top: 56px;               /* sits right under the smaller header */
    right: 20px;
    padding: 14px;
    border-radius: 10px;
  }

  .hamburger {
    display: block;
    font-size: 1.6rem;       /* a touch smaller so header stays short */
  }

  /* Give the promo a bigger gap under the header on phones */
  .promo {
    margin: 130px auto 0;    /* bigger space so the header never overlaps */
    padding: 50px 20px;      /* keep your existing mobile padding */
    text-align: center;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;      /* your existing mobile card padding */
  }

  .promo-image img {
    max-width: 90%;
    margin: 0 auto 20px;
  }

  .promo-text h2 {
    font-size: 1.5rem;
  }

  .promo-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .promo-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* About Section Mobile (kept from your code) */
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-image img {
    max-width: 100%;
  }
}
