:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --bg-main: #FDFBF7;
  --bg-secondary: linear-gradient(145deg, #F5F1E7 0%, #EAE4D3 100%);
  --text-primary: #2A2420;
  --text-secondary: #6B5E51;
  --accent: #DECBB7;
  --accent-dark: #9E816A;
  --white: #FFFFFF;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .footer-logo {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

/* Layout Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 120px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: var(--accent-dark);
  margin-top: 15px;
}

.bg-light {
  background: var(--bg-secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--text-primary);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: currentColor;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  color: var(--white);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.close-btn {
  position: absolute;
  top: 24px;
  right: 5%;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-link {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--text-primary);
  margin: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.5s; }

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('644574544_122163601370739679_7028970340249850910_n.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

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

.hero-title {
  color: var(--white);
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-title span {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* About Section */
.about {
  background-color: var(--bg-main);
}

.about-text {
  font-size: 1.25rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Gallery Section */
.gallery {
  padding: 0 5% 120px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 350px;
  gap: 1.5rem;
}

/* Create a dynamic mosaic pattern */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }

.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

/* Menu Section */
.menu {
  background-color: var(--bg-main);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.category-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-item {
  width: 100%;
}

.item-info {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.item-info h4 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

.item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
  position: relative;
  top: -4px;
}

.item-price {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-primary);
}

/* Location Section */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-block i {
  color: var(--accent-dark);
  margin-top: 4px;
}

.info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.location-map {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 80px 0 40px;
  text-align: center;
}

.footer-logo {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--white);
  color: var(--text-primary);
}

.footer-contact {
  color: #a3a3a3;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.copyright {
  color: #666;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Animations */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
  }
  
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }

  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-title span {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(8) { display: none; } /* Hide one item on tablet for cleaner grid */
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  .gallery-item:nth-child(8) { display: block; } /* Show it back on mobile */

  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-text {
    font-size: 1.05rem;
    text-align: left;
  }
  
  .location-map {
    height: 300px;
  }
}

.quote-section {
  background: var(--bg-secondary);
  text-align: center;
  padding: 80px 5%;
}

.quote-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-primary);
  line-height: 1.4;
}

.quote-author {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Contact Section */
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--white);
  border: 1px solid #EAE4D3;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

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

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
  animation: fadeIn 0.4s ease;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
}

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

.gallery-item {
  cursor: zoom-in;
}

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

.nav-links a.active::after {
  width: 100%;
  background-color: var(--accent-dark);
}
