/* Base styles and variables */
:root {
  --gold: #D4AF37;
  --gold-light: #F5E7A3;
  --gold-dark: #9C7C1D;
  --charcoal: #333333;
  --charcoal-light: #555555;
  --charcoal-dark: #222222;
  --black: #000000;
  --white: #FFFFFF;
  --gray-100: rgba(255, 255, 255, 0.1);
  --gray-200: rgba(255, 255, 255, 0.2);
  --gray-300: rgba(255, 255, 255, 0.3);
  --gray-400: rgba(255, 255, 255, 0.4);
  --gray-500: rgba(255, 255, 255, 0.5);
  --gray-600: rgba(255, 255, 255, 0.6);
  --gray-700: rgba(255, 255, 255, 0.7);
  --gray-800: rgba(255, 255, 255, 0.8);
  --gray-900: rgba(255, 255, 255, 0.9);
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  position: relative;
  color: var(--white);
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.nav-link:nth-child(1) { animation-delay: 0.3s; }
.nav-link:nth-child(2) { animation-delay: 0.4s; }
.nav-link:nth-child(3) { animation-delay: 0.5s; }
.nav-link:nth-child(4) { animation-delay: 0.6s; }
.nav-link:nth-child(5) { animation-delay: 0.7s; }

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-nav-toggle.active .hamburger {
  transform: rotate(45deg);
}

.mobile-nav-toggle.active .hamburger::before {
  transform: rotate(0) translateY(0) translateX(0);
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger::after {
  transform: rotate(-90deg) translateY(0) translateX(9px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070');
  background-size: cover;
  background-position: center;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-decoration {
  width: 4rem;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.8s;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.05s; }
.hero-title span:nth-child(2) { animation-delay: 0.1s; }
.hero-title span:nth-child(3) { animation-delay: 0.15s; }
.hero-title span:nth-child(4) { animation-delay: 0.2s; }
.hero-title span:nth-child(5) { animation-delay: 0.25s; }
.hero-title span:nth-child(6) { animation-delay: 0.3s; }
.hero-title span:nth-child(7) { animation-delay: 0.35s; }
.hero-title span:nth-child(8) { animation-delay: 0.4s; }

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-800);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 1.2s;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--gold);
  color: var(--charcoal-dark);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 1.6s;
}

.cta-button:hover {
  background-color: var(--gold-dark);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-down {
  color: var(--white);
  opacity: 0.7;
  transition: var(--transition);
}

.scroll-down:hover {
  opacity: 1;
  color: var(--gold-light);
}

.corner-decoration {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-color: rgba(212, 175, 55, 0.3);
  z-index: 5;
}

.top-left {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.top-right {
  top: 0;
  right: 0;
  border-top: 1px solid;
  border-right: 1px solid;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

/* About Section */
.about {
  background-color: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
  }
}

.about-image-container {
  position: relative;
}

.about-image-border {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1;
  border-radius: var(--radius-sm);
}

.about-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.section-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-line {
  width: 3rem;
  height: 1px;
  background-color: var(--gold);
  margin-right: 1rem;
}

.section-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.text-content {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--gray-600);
}

.stat-divider {
  width: 1px;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}

@media (min-width: 768px) {
  .stat-divider {
    display: block;
  }
}

/* Menu Section */
.menu {
  background-color: var(--black);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.section-title-center .section-line {
  margin: 0 1rem;
}

.section-description {
  color: var(--gray-700);
  max-width: 36rem;
  margin: 0 auto;
}

.menu-tabs {
  margin-bottom: 3rem;
}

.tabs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  max-width: fit-content;
  margin: 0 auto 3rem;
}

.tab-trigger {
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.tab-trigger:hover {
  color: var(--white);
}

.tab-trigger.active {
  background-color: var(--gold);
  color: var(--charcoal-dark);
  font-weight: 500;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item {
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.menu-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-image {
  height: 12rem;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.menu-item-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.price {
  color: var(--gold);
  font-weight: 500;
}

.menu-item-content p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.view-menu-container {
  text-align: center;
  margin-top: 4rem;
}

.view-menu-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.view-menu-button svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.view-menu-button:hover {
  background-color: var(--gold);
  color: var(--charcoal-dark);
}

.view-menu-button:hover svg {
  transform: translateX(4px);
}

/* Reservation Section */
.reservations {
  background-color: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .reservation-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.contact-items {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.reservation-form-container {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .reservation-form-container {
    padding: 2.5rem;
  }
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.submit-button {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--gold);
  color: var(--charcoal-dark);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 1rem;
  height: 3rem;
}

.submit-button:hover {
  background-color: var(--gold-dark);
}

/* Contact Section */
.contact {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-card:hover .contact-card-icon {
  background-color: rgba(212, 175, 55, 0.2);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(51, 51, 51, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.contact-card-icon svg {
  color: var(--gold);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map {
  aspect-ratio: 16 / 7;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.directions-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--gold);
  color: var(--charcoal-dark);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-radius: 26px;
}

.directions-button:hover {
  background-color: var(--gold-dark);
}

/* Footer */
.footer {
  background-color: var(--charcoal-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gray-600);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-heading {
  position: relative;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--gold);
}

.footer-links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--gray-600);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.footer-links-list a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: rgba(212, 175, 55, 0.5);
  margin-right: 0.5rem;
}

.footer-links-list a:hover {
  color: var(--gold);
}

.footer-newsletter p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--white);
  padding: 0.75rem 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form button {
  background-color: var(--gold);
  color: var(--charcoal-dark);
  padding: 0 1rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--gold-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
  }
}

.copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  padding: 1rem 1.5rem;
  background-color: rgba(33, 33, 33, 0.9);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--gold);
  color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(100%);
  opacity: 0;
  animation: slideInRight 0.3s forwards;
}

.toast-close {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
  margin-left: 1rem;
}

.toast-close:hover {
  color: var(--white);
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}