/* Venue Page Styling */
:root {
  --primary-color: #e74c3c;
  --secondary-color: #c0392b;
  --accent-color: #f39c12;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --text-color: #333;
  --light-text: #6c757d;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

/* Hero Section */
.venue-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
  margin-bottom: 50px;
}

.venue-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.venue-hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.venue-intro {
  padding: 50px 0;
  background-color: var(--light-bg);
}

.venue-intro-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.venue-intro-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.venue-intro-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-color);
}

.venue-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.venue-feature {
  text-align: center;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.venue-feature:hover {
  transform: translateY(-5px);
}

.venue-feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.venue-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.venue-feature p {
  color: var(--light-text);
  margin: 0;
}

/* Gallery Section */
.venue-gallery {
  padding: 50px 0;
  background-color: var(--light-bg);
}

.venue-gallery h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-color);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

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

.gallery-placeholder {
  background-color: #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--light-text);
  padding: 20px;
}

.gallery-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.gallery-note {
  text-align: center;
  color: var(--light-text);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius);
}

.gallery-note i {
  color: var(--info-color);
  margin-right: 5px;
}

/* Events Section */
.venue-events {
  padding: 50px 0;
  background-color: white;
}

.venue-events h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.events-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-color);
}

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

.event-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.event-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-bg);
  text-align: center;
}

.event-card p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Menu Section */
.venue-menu {
  padding: 50px 0;
  background-color: white;
}

.venue-menu h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.menu-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-color);
}

.menu-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.menu-option {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.menu-option:hover {
  transform: translateY(-5px);
}

.menu-option h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.menu-option ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.menu-option li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-color);
}

.menu-option li:last-child {
  border-bottom: none;
}

.menu-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid var(--border-color);
}

.menu-note {
  text-align: center;
  color: var(--light-text);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius);
}

.menu-note i {
  color: var(--info-color);
  margin-right: 5px;
}

/* Contact Section */
.venue-contact {
  padding: 50px 0;
  background-color: var(--light-bg);
}

.venue-contact h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-color);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

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

.contact-method i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-method h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.contact-method p {
  color: var(--text-color);
}

.contact-cta {
  text-align: center;
  margin-top: 30px;
}

.contact-cta .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .venue-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .venue-hero h1 {
    font-size: 2.5rem;
  }
  
  .venue-hero p {
    font-size: 1.2rem;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-options {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .venue-features {
    grid-template-columns: 1fr;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .venue-hero {
    padding: 60px 0;
  }
  
  .venue-hero h1 {
    font-size: 2rem;
  }
}

/* Create directory for venue images */
.assets-note {
  display: none;
}



/* Milky Placeholder for Gallery */
.gallery-placeholder-milky {
  background-color: rgba(255, 255, 255, 0.8); 

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-color); 
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-placeholder-milky i {
  font-size: 3rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-placeholder-milky {
  background-color: rgba(255, 255, 255, 0.9); 
}

.gallery-item:hover .gallery-placeholder-milky i {
  opacity: 1;
}




/* Blurred Image Background for Gallery */
.gallery-item {
  position: relative; /* Needed for absolute positioning of children */
}

.gallery-link-wrapper {
    display: block; /* Ensure the link takes up the item space */
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide parts of image that might overflow */
}

.gallery-image-blurred {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area without distortion */
  transition: filter 0.3s ease; /* Optional: transition for hover effect */
  z-index: 0; /* Behind the overlay */
}

/* Adjust Milky Placeholder to be an overlay */
.gallery-placeholder-milky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* Slightly less opaque milky effect */

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Ensure overlay is above the blurred image */
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.gallery-placeholder-milky i {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 1;
  transition: opacity 0.3s ease;
}



.gallery-item:hover .gallery-placeholder-milky {
  background-color: rgba(255, 255, 255, 0.5); /* Make overlay more transparent on hover */
  opacity: 0;
}

.gallery-item:hover .gallery-placeholder-milky i {
  opacity: 0;
}

