:root {
  /* Color Palette */
  --primary: #1a365d;
  /* Deep Ocean Blue */
  --primary-light: #2c5282;
  --secondary: #f7fafc;
  /* Sand/Cream */
  --accent: #2d3748;
  /* Slate */
  --gold: #c0a080;
  /* Elegant Accents */
  --text-main: #2d3748;
  --text-muted: #718096;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-dark: rgba(26, 54, 93, 0.8);

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 100px 20px;
  --max-width: 1200px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  font-family: "Material Symbols Outlined";
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--secondary);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Base Components */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero-bg.jpg') center/cover no-repeat;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 20px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-col ul li {
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .header-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 25px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .burger-menu {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    border: none;
    background: none;
    padding: 10px;
  }

  .burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }

  .burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  /* Grid Fixes */
  div[style*="grid-template-columns: 1fr 1fr"],
  .contact-wrapper,
  .room-grid,
  .menu-section>div,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .menu-section,
  .legal-content,
  .contact-form {
    padding: 30px 20px !important;
    margin-top: 0 !important;
  }

  .restaurant-hero h1 {
    font-size: 2.2rem !important;
  }
}

.burger-menu {
  display: none;
}

.benefit-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-aos] {
  will-change: transform, opacity;
}