/* Modern Clean Design for Wedding Venue Booking */

:root {
  --primary-color: #00D4FF;
  --secondary-color: #FF69B4;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

html, body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--text-dark);
  color: var(--text-light);
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url('https://images.pexels.com/photos/1707446/pexels-photo-1707446.jpeg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}

.main-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(5px);
  z-index: 1;
}

html, body {
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  color: var(--text-dark);
  flex-shrink: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(52, 152, 219, 0.1));
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section img {
  width: 150px;
  height: 150px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 0 25px rgba(255, 255, 255, 0.5),
    0 0 45px rgba(255, 255, 255, 0.3);
  object-fit: cover;
  filter: brightness(1.4) contrast(1.2) saturate(1.2);
  animation: glowPulse 2s infinite ease-in-out;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px;
}

@keyframes glowPulse {
  0% {
    box-shadow: var(--glass-shadow), 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: var(--glass-shadow), 0 0 30px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: var(--glass-shadow), 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

.hero-section h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}


.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
    
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Feature Boxes */
.feature-section {
  padding: 2rem 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  z-index: 2;
}

.row.g-4 {
  margin: 0 auto;
  max-width: 1200px;
}

.feature-box {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
  height: 180px; /* Fixed height for all boxes */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.col-md-4:nth-child(1) .feature-box {
  animation-delay: 0.2s;
}

.col-md-4:nth-child(2) .feature-box {
  animation-delay: 0.4s;
}

.col-md-4:nth-child(3) .feature-box {
  animation-delay: 0.6s;
}

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

.feature-box:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); /* Slight pop on hover */
}




.feature-box h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  transition: all 0.3s ease;
}

.feature-box p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.feature-box:hover h3 {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}/* Venue Cards */
.venue-card {
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06); /* Glassmorphic effect */
    border-radius: 14px;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.venue-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Optional - Image styling (if applicable) */
.venue-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* Optional - Adjust text styles for glass background */
.venue-card .card-title {
    color: #ffffff;
    font-weight: 600;
}

.venue-card .card-text {
    color: #dddddd;
    font-size: 0.9rem;
}


/* Buttons */
.btn-primary {
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid var(--glass-border);
  padding: 15px 35px;
  border-radius: 30px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 89, 182, 0.3);
  color: white;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(86, 171, 47, 0.4);
}

/* Navbar - Clean, Modern, Flat */
.navbar {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  padding: 0.75rem 1rem;
  position: absolute; /* Position over the hero image */
  width: 100%;
  z-index: 1000; /* Ensure it's above other content */
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff !important; /* White color for brand */
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #e0e0e0 !important; /* Light grey for links */
  margin-left: 1rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important; /* White on hover */
}

/* Optional: Use Roboto for Google feel */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #1a1a1a; /* Dark background for the rest of the page */
}


/* Venue Detail Page */
.venue-gallery img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

/* Sticky Booking Card */
.sticky-top {
    top: 20px !important;
}

/* Contact Form */
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* FAQ Accordion */
.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background: #667eea;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Footer */
footer {
  padding: 1rem 0;
  background: var(--glass-bg);
  color: var(--text-light);
  flex-shrink: 0;
  z-index: 2;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

footer a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}footer .container p {
  color: #ffffff !important; /* Applied color from inline style */
}

footer .container p a {
  color: #ffffff !important; /* Ensure sitemap link is white */
}

/* Responsive Design */
@media (max-width: 768px) {
  html, body {
    overflow-y: auto;
    min-height: -webkit-fill-available;
  }

  .main-container {
    min-height: -webkit-fill-available;
  }

  .main-container::before {
    position: fixed;
    min-height: -webkit-fill-available;
  }

  .hero-section {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-section img {
    width: 150px;
    height: 150px;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }

  .hero-section h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-section p {
    font-size: 1rem;
    padding: 0 15px;
    margin-bottom: 1.25rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-section {
    padding: 1rem;
    width: 100%;
  }

  .feature-section .container {
    max-width: 100%;
  }

  .row.g-4 {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .col-md-4 {
    width: 100%;
    padding: 0;
  }

  .feature-box {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 1.5rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    visibility: visible;
  }

  .feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
  }

  .feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
  }

  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
  }

  .btn-primary {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  @keyframes fadeInUp {
    to {
      transform: translateY(0);
    }
  }

  footer {
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    border: none;
    padding: 15px 20px;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

/* Price Tags */
.price-tag {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* Rating Stars */
.rating {
    color: #ffc107;
    font-size: 1.1rem;
}

/* Badge Styles */
.badge-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
} 

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}
h1, h2, h3, h4, h5, h6, .lead {
    color: #ffffff;
}
p{
    color: #e0e0e0; /* Changed paragraph text color for better readability */
}
.glassy-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  color:white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;         /* Adjust as needed */
  height: auto;          /* ✨ Ensure height is not fixed */
  min-height: unset;     /* Optional reset */
}
.breadcrumb-item a,
.breadcrumb-item,
.breadcrumb-item.active {
  color:white !important;
}

.breadcrumb {
  background-color: transparent; /* optional: removes background */
}