/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --gold: #bfa15a;
  --dark: #0a0a0a;
  --dark-gray: #1a1a1a;
  --light: #f8f8f8;
  --white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.7);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links a:hover .social-icon {
  opacity: 0.7;
  transform: translateY(-2px);
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--dark);
}

.lead-text-light {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--white);
}

.light-text {
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   PARTICLES BACKGROUND
   =========================== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float 15s infinite;
  box-shadow: 0 0 10px var(--gold);
}

@keyframes float {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
  }
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(191, 161, 90, 0.2);
}

.header-fixed.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.brand:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(191, 161, 90, 0.5);
}

.eiffel-icon {
  stroke: var(--gold);
  filter: drop-shadow(0 0 5px rgba(191, 161, 90, 0.3));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  position: relative;
  transition: var(--transition);
  letter-spacing: 1px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 30px 50px;
  gap: 30px;
}

.mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  transition: var(--transition);
  position: relative;
}

.mobile-nav-link:hover {
  color: var(--gold);
  transform: translateX(10px);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(191, 161, 90, 0.4);
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn-big {
  padding: 18px 50px;
  font-size: 1rem;
}

.btn-small {
  padding: 10px 25px;
  font-size: 0.85rem;
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-glow {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(191, 161, 90, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(191, 161, 90, 0.8);
  }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  background: url('ground.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-container {
  margin-bottom: 40px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-logo {
  max-width: 200px;
  height: auto;
  transition: var(--transition);
}



.hero-title {
  font-size: clamp(3rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.letter {
  display: inline-block;
  animation: letterDance 0.6s ease-out forwards;
  opacity: 0;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.15s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.25s; }
.letter:nth-child(5) { animation-delay: 0.3s; }
.letter:nth-child(6) { animation-delay: 0.35s; }
.letter:nth-child(7) { animation-delay: 0.4s; }
.letter:nth-child(8) { animation-delay: 0.45s; }
.letter:nth-child(9) { animation-delay: 0.5s; }
.letter:nth-child(10) { animation-delay: 0.55s; }
.letter:nth-child(11) { animation-delay: 0.6s; }

@keyframes letterDance {
  0% {
    opacity: 0;
    transform: translateY(30px) rotate(-10deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.tagline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out 0.5s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.divider-ornament {
  margin: 30px auto;
  animation: fadeIn 1s ease-out 0.7s backwards;
}

.intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeIn 1s ease-out 0.9s backwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-text {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Eiffel Tower Decorations */
.eiffel-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  animation: eiffelFloat 6s ease-in-out infinite;
}

.eiffel-left {
  left: 5%;
  top: 20%;
}

.eiffel-right {
  right: 5%;
  bottom: 20%;
  animation-delay: 3s;
}

@keyframes eiffelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: 120px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-light {
  background: var(--white);
  color: var(--dark);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-section {
  background-attachment: fixed;
}

.section-craft {
  background-image: url('ground.jpg');
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.85));
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 500;
}

.section-label-light {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-label.gold {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title-light {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.title-underline {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.title-underline::before,
.title-underline::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.title-underline::before {
  left: -20px;
}

.title-underline::after {
  right: -20px;
}

.title-underline.light {
  background: var(--white);
}

.title-underline.light::before,
.title-underline.light::after {
  background: var(--white);
}

.title-underline.gold {
  background: var(--gold);
}

.title-underline.gold::before,
.title-underline.gold::after {
  background: var(--gold);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  padding: 40px 30px;
  background: var(--white);
  border: 1px solid rgba(191, 161, 90, 0.2);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: grayscale(1);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  filter: grayscale(0);
  transform: scale(1.2);
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
}

/* ===========================
   CUISINE HIGHLIGHTS
   =========================== */
.cuisine-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.highlight-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(191, 161, 90, 0.2);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.highlight-number {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
}

.highlight-item h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ===========================
   WINE REGIONS
   =========================== */
.wine-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.region-tag {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: default;
}

.region-tag:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(191, 161, 90, 0.3);
}

/* ===========================
   MENU SECTION
   =========================== */
.menu-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.menu-links .btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(191, 161, 90, 0.2);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-item h3 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--dark);
}

.contact-item p {
  color: #666;
  font-size: 1rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 5% 30px;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.footer-brand h3 {
  color: var(--gold);
  font-size: 2rem;
  margin: 20px 0 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.eiffel-icon-large {
  margin: 0 auto;
  display: block;
  stroke: var(--gold);
  filter: drop-shadow(0 0 10px rgba(191, 161, 90, 0.3));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-social p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  font-size: 1.5rem;
  transition: var(--transition);
  filter: grayscale(1);
}

.social-icons a:hover {
  transform: scale(1.2);
  filter: grayscale(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

/* ===========================
   BOTTOM BAR
   =========================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-top: 1px solid rgba(191, 161, 90, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-bar.visible {
  transform: translateY(0);
}

.bottom-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.bottom-bar-content span {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.bottom-bar-content a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.bottom-bar-content a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.reserve-link {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 3px;
  font-weight: 500;
}

.reserve-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(191, 161, 90, 0.4);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  section {
    padding: 80px 5%;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-inner {
    padding: 15px 5%;
  }
  
  .brand {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  
  section {
    padding: 60px 5%;
  }
  
  .section-title,
  .section-title-light {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .features-grid,
  .cuisine-highlights,
  .contact-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bottom-bar-content {
    gap: 15px;
    font-size: 0.8rem;
  }
  
  .eiffel-decoration {
    display: none;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .section-image {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0 15px;
  }
  
  .intro {
    font-size: 1rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .mobile-nav-link {
    font-size: 1.5rem;
  }
  
  .btn-big {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
  
  .menu-links {
    flex-direction: column;
    align-items: center;
  }
}