/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --brown-wood: #3D2914;
    --blue-sky: #4A90E2;
    --gold-accent: #D4AF37;
    --cream: #F5F5DC;
    --dark-brown: #2C1810;
    --light-blue: #87CEEB;
    --light-yellow: #FFFFE0; /* Add this new variable */
}



/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold-accent);
    font-style: italic;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Backgrounds */
.section {
    padding: 80px 0;
    position: relative;
}

.brown-bg {
    background: linear-gradient(135deg, var(--brown-wood) 0%, var(--dark-brown) 100%);
    color: var(--cream);
}

.blue-bg {
    background: var(--light-yellow);
    color: var(--brown-wood);
}


.blue-bg .section-title {
    color: var(--brown-wood);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}



/* SECTION 1: Gallery */
.fullscreen-gallery {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.logo-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo {
    height: 160px;
    width: auto;
}

.gallery-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* SECTION 2: Welcome */
.welcome-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.social-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-image:hover img {
    transform: scale(1.1);
}

/* SECTION 3: About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    font-style: italic;
    color: var(--brown-wood); /* Changed from var(--gold-accent) */
    font-size: 1.3rem;
    margin-top: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* SECTION 4: Offers */
.offers-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.offer-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.offers-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-description h3 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* SECTION 5: Cocktails */
.cocktail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.cocktail-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cocktail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cocktail-image:hover img {
    transform: scale(1.1);
}

.cocktail-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* SECTION 6: Menu */
.menu-gallery-link {
    text-align: center;
    margin: 3rem 0;
}

.menu-button {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--dark-brown);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.menu-button:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.menu-note {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-top: 2rem;
}

/* SECTION 7: Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.review-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review-item h4 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* SECTION 8: Location */
.maps-button {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-maps {
    display: inline-block;
    background: var(--blue-sky);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-maps:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* SECTION 9: Social Media */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gold-accent);
    color: var(--dark-brown);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* SECTION 10: Footer */
.footer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    display: block;
}

.contact-item a {
    color: var(--cream);
    text-decoration: none;
    font-weight: bold;
}

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

.footer-separator {
    border: none;
    height: 1px;
    background: var(--gold-accent);
    margin: 2rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links img {
    height: 30px;
}

.footer-copyright {
    text-align: center;
    color: var(--gold-accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offers-gallery,
    .offers-content {
        grid-template-columns: 1fr;
    }
    
    .cocktail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 120px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cocktail-gallery {
        grid-template-columns: 1fr;
    }
    
    .social-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cookie-consent-popup {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; bottom: 0;
  background: rgba(40, 30, 10, 0.98);
  color: #fff;
  padding: 0;
  display: none;
  justify-content: center;
  align-items: flex-end;
  min-height: 100px;
  font-family: 'Open Sans', sans-serif;
}

.cookie-consent-content {
  background: #fffbe6;
  color: #3D2914;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  padding: 32px 24px 20px 24px;
  max-width: 480px;
  width: 100%;
  margin: 0 16px 24px 16px;
  text-align: center;
}

.cookie-consent-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.cookie-consent-content p {
  font-size: 1rem;
  margin-bottom: 18px;
}

.cookie-consent-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn.accept {
  background: #D4AF37;
  color: #3D2914;
}

.cookie-btn.reject {
  background: #eee;
  color: #3D2914;
  border: 1px solid #D4AF37;
}

.cookie-btn.prefs {
  background: transparent;
  color: #3D2914;
  text-decoration: underline;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-consent-links {
  font-size: 0.95em;
  margin-top: 8px;
}

.cookie-consent-links a {
  color: #3D2914;
  text-decoration: underline;
  margin: 0 4px;
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  font-family: 'Open Sans', sans-serif;
}

.current-language {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 41, 20, 0.9);
  color: var(--cream);
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  min-width: 80px;
}

.current-language:hover {
  background: rgba(61, 41, 20, 1);
  transform: translateY(-2px);
}

.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.current-language i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.language-selector.open .current-language i {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(61, 41, 20, 0.95);
  border-radius: 15px;
  padding: 10px 0;
  margin-top: 10px;
  min-width: 140px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.language-selector.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.2s ease;
}

.language-option:hover {
  background: rgba(212, 175, 55, 0.2);
}

.language-option.active {
  background: rgba(212, 175, 55, 0.3);
  color: var(--gold-accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .language-selector {
    top: 15px;
    right: 15px;
  }
  
  .current-language {
    padding: 8px 12px;
    min-width: 70px;
  }
  
  .language-menu {
    min-width: 120px;
  }
}

