/* === GLOBAL STYLES === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.1) 0%, #000 80%);
  color: #f0f0f0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  z-index: 10;
}

.logo-icon {
  height: 45px;
  cursor: pointer;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

/* Hover underline animation */
.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* === HERO SECTION === */
.hero {
  text-align: center;
  padding: 180px 20px 120px 20px;
  background: linear-gradient(to bottom, #111, #000);
}

.main-logo {
  width: 280px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8))
          drop-shadow(0 0 50px rgba(212, 175, 55, 0.6));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6))
            drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
  }
  to {
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 1))
            drop-shadow(0 0 60px rgba(212, 175, 55, 0.8));
  }
}

.hero h1 {
  font-size: 2.8em;
  color: #d4af37;
  margin-bottom: 15px;
  animation: fadeIn 1.5s ease-out forwards;
}

.hero p {
  font-size: 1.25em;
  color: #ddd;
  max-width: 750px;
  margin: 0 auto 25px;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.3s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn.primary {
  background-color: #d4af37;
  color: #000;
  font-size: 1.1em;
}

.btn.secondary {
  border: 2px solid #d4af37;
  color: #d4af37;
}

.btn:hover {
  background-color: #f5c542;
  color: #000;
}

/* === SECTION FORMATTING === */
section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

/* GOLD DIVIDER LINES BETWEEN SECTIONS */
section:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  margin: 80px auto 0 auto;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  border-radius: 10px;
}

h2 {
  color: #d4af37;
  font-size: 2.2em;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.7;
}

/* === TESTIMONIALS === */
#testimonials {
  background-color: #111;
  padding: 80px 20px;
}

.testimonial {
  max-width: 650px;
  margin: 20px auto;
  font-style: italic;
  color: #ccc;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: #d4af37;
  font-weight: bold;
}

/* === À-LA-CARTE SECTION === */
#a-la-carte {
  background-color: #0a0a0a;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* === INSTAGRAM === */
#instagram {
  background-color: #111;
  padding: 100px 20px;
}

#instagram p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ddd;
}

/* === FOOTER === */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
  border-top: 1px solid #222;
}

/* === SOCIAL BAR === */
.social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.social-icon img {
  width: 30px;
  height: 30px;
  filter: invert(70%) sepia(90%) saturate(500%) hue-rotate(20deg);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
  filter: brightness(1.3) sepia(100%) saturate(1000%) hue-rotate(15deg);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1.05em;
  }

  .btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}
