/* Navigation Styles */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  background-color: rgba(59, 46, 47, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo-circle {
  width: 70px;
  height: 70px;
  background-color: #f8f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #423738;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-circle img {
  display: block;
  padding: 0;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.nav-links li a {
  color: #f9f6f6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f0c14b;
}

.nav-links li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #f0c14b;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-links li:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Events Hero Section */
.events-hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, rgba(66, 55, 56, 0.9) 0%, rgba(42, 31, 32, 0.9) 100%);
  position: relative;
  background-image: url('images/DSC07954_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f8f5f5;
  text-align: center;
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

.events-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
  color: #f0c14b;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Events Introduction */
.events-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f5f5 0%, #e8e4e4 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}

/* Weekly Line-Up Section */
.weekly-lineup {
  padding: 80px 0;
  background: linear-gradient(135deg, #423738 0%, #2a1f20 100%);
  position: relative;
  background-image: url('images/DSC08122_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.weekly-lineup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.weekly-lineup .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  color: #f8f5f5;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 55, 56, 0.1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.event-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.event-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #423738;
  margin-bottom: 15px;
}

.event-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Live Music Section */
.live-music {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f5f5 0%, #e8e4e4 100%);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.text-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #423738;
  text-align: center;
  font-weight: 400;
}

/* Private Events Section */
.private-events {
  padding: 80px 0;
  background: linear-gradient(135deg, #423738 0%, #2a1f20 100%);
  position: relative;
  background-image: url('images/DSC08044_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.private-events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.private-events .container {
  position: relative;
  z-index: 2;
}

.private-events .section-header {
  color: #f8f5f5;
}

.private-events .text-content p {
  color: #f8f5f5;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.service-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.service-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #423738;
  margin: 0;
  line-height: 1.4;
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f5f5 0%, #e8e4e4 100%);
}

.booking-section .section-header {
  color: #423738;
}

.booking-section .text-content p {
  color: #555;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.closing-text {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #423738 !important;
  font-style: italic;
}

/* Call to Action Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #423738 0%, #2a1f20 100%);
  position: relative;
  background-image: url('images/DSC08164_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  color: #f8f5f5;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-button {
  background: linear-gradient(135deg, #f0c14b 0%, #e6b800 100%);
  color: #423738;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(240, 193, 75, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(240, 193, 75, 0.4);
  background: linear-gradient(135deg, #e6b800 0%, #d4a800 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .intro-content p {
    font-size: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-card {
    padding: 30px;
  }
  
  .event-card h3 {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .service-item {
    padding: 25px 15px;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .event-card {
    padding: 25px;
  }
  
  .event-icon {
    font-size: 3rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Mobile Navigation */

@media (max-width: 900px) {
    .nav-links {
        position: fixed; /* Changed to fixed for full viewport coverage */
        top: 70px; /* Matches header height */
        left: 0; /* Align to left edge for full width */
        background: rgba(66, 55, 56, 0.98);
        color: #222;
        flex-direction: column;
        width: 100%; /* Full page width */
        height: calc(100vh - 70px); /* Full height minus header */
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        border-radius: 0; /* Removed for full-page look */
        transform: translateX(100%);
        transition: transform 0.3s, opacity 0.3s;
        padding: 1rem 0;
        opacity: 0;
        pointer-events: none;
        z-index: 999;
        display: flex; /* Ensure flexbox */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li a {
        color: #fdfbfb;
        padding: 2rem 3rem;
        display: block;
        text-align: center; /* Center text in links */
    }

    .hamburger {
        display: flex !important;
    }
}

@media (min-width: 901px) {
    .nav-links {
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        width: auto; /* Reset for desktop */
        height: auto; /* Reset for desktop */
        display: flex; /* Maintain flexbox */
        align-items: center; /* Optional: align items vertically */
        justify-content: flex-start; /* Default desktop alignment */
        color: #222; /* Preserve color */
    }

    .nav-links li a {
        text-align: left; /* Reset text alignment for desktop */
    }

    .hamburger {
        display: none !important;
    }
}

.live-music .section-header h2 {
  color:#423738
}

.footer-cta {
  text-align: center;
  margin-bottom: 16px;
}

.footer-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background: linear-gradient(90deg, #d4800f 0%, #a68a7f 100%);
  box-shadow: 0 6px 18px rgba(229,147,18,0.2);
}


.site-footer {
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  color: #fff;
  padding: 48px 0 16px 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  padding: 0 24px;
  gap: 40px;
}

.footer-description {
  flex: 2 1 320px;
  margin-bottom: 24px;
}

.footer-description h2 {
  font-family: 'Playfair Display', serif;
  color: #E59312;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-description p {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-reserve-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  margin-top: 10px;
}

.footer-reserve-btn:hover {
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
}

.footer-contact {
  flex: 1 1 260px;
  margin-bottom: 24px;
}

.footer-contact h3 {
  color: #E59312;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #E59312;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #b49a8f;
  font-size: 0.95rem;
  padding-top: 12px;
  border-top: 1px solid rgba(229,147,18,0.12);
  letter-spacing: 0.5px;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #E59312;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #E59312;
  color: #fff;
}


/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    padding: 0 10px;
  }
  .footer-description,
  .footer-contact {
    margin-bottom: 10px;
  }
}

