:root {
  --primary: #1e40af;
  --secondary: #3b82f6;
  --accent: #60a5fa;
  --dark: #000000;
  --light-bg: #000000;
  --success: #059669;
  --gold: #d2b48c;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: white;
  background: black;
  overflow-x: hidden;
}

[data-aos] {
  transition-duration: 0.8s;
}

.navbar {
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 70px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(59,130,246,0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  font-family: 'Georgia', 'Garamond', serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
  background: var(--gold);
  color: black;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(210,180,140,0.3);
}

.cta-button:hover {
  background: #a0865c;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(210,180,140,0.5);
}

.recipes-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.signature-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  gap: 2rem;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.event-image {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.event-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-size: 1.9rem;
  color: white;
  margin-bottom: 1rem;
}

.event-desc {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.8;
}

.event-price {
  color: white;
  font-size: 1rem;
  font-style: italic;
  margin-top: 0.5rem;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: white;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.recipe-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.recipe-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.recipe-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.recipe-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-image {
  transform: scale(1.1);
}

.recipe-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-content {
  padding: 2rem;
}

.recipe-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.recipe-desc {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.recipe-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.tag:hover {
  transform: scale(1.05);
}

.recipe-title i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.about-section {
  padding: 5rem 2rem;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
}

.about-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(30,64,175,0.2);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.newsletter-section {
  padding: 5rem 2rem;
  background: var(--light-bg);
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--gold);
}

.newsletter-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: #1a1a1a;
  color: white;
}

.newsletter-input:focus {
  outline: none;
  border-color: white;
}

.newsletter-button {
  background: var(--gold);
  color: black;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-button:hover {
  background: #a0865c;
  transform: translateY(-2px);
}

.contact-actions {
  margin-top: 2.5rem;
  text-align: center;
}

.contact-intro {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 120px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.contact-card i {
  font-size: 2rem;
  color: var(--secondary);
  min-width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(96,165,250,0.15);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: white;
}

.contact-card p {
  color: var(--gold);
  margin: 0;
}

.instagram-card i {
  color: #d6249f;
  background: rgba(214,36,159,0.12);
}

.phone-card i {
  color: var(--success);
  background: rgba(5,150,105,0.12);
}

.linkedin-card i {
  color: #0a66c2;
  background: rgba(10,102,194,0.12);
}



.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--primary);
}

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: 0.3s;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(30,64,175,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    font-size: 1.5rem;
    transition: right 0.3s ease-in-out;
  }

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

  .nav-links a {
    color: white;
    font-weight: 600;
  }

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

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-image {
    min-height: 220px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    width: 90%;
    max-height: 90vh;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

/* Reservation Section */
.reservation-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reservation-container {
  background: linear-gradient(135deg, rgba(210,180,140,0.1), rgba(210,180,140,0.05));
  padding: 4rem 2rem;
  border-radius: 25px;
  border: 2px solid rgba(210,180,140,0.3);
}

.reservation-intro {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.book-button {
  background: var(--gold);
  color: black;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(210,180,140,0.2);
  font-weight: 600;
}

.book-button:hover {
  background: #a0865c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(210,180,140,0.4);
}

.book-button i {
  margin-right: 0.5rem;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

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

.modal {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(210,180,140,0.2);
  animation: slideUp 0.3s ease;
}

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

.modal h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

/* Booking Form */
.booking-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #2a2a2a;
  border: 1px solid rgba(210,180,140,0.3);
  border-radius: 10px;
  padding: 0.8rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(210,180,140,0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  background: var(--gold);
  color: black;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  background: #a0865c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(210,180,140,0.3);
}

/* Social Modal */
.social-modal {
  text-align: center;
}

.social-modal p {
  color: var(--gold);
  margin-bottom: 2rem;
}

.social-buttons {
  display: none;
}

.social-btn {
  display: none;
}

/* Scrollbar for modal */
.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: rgba(210,180,140,0.05);
  border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(210,180,140,0.3);
  border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(210,180,140,0.5);
}
