/* Venue Page Layout Specific Styles */

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #0f172a, #365314, #0f172a);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}



.max {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #0f172a, #365314, #0f172a);
}

.hero-overlay {
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hero-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 56rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.hero-text-center {
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    line-height: 2rem;
    color: white;
    opacity: 0.9;
}

/* Venue Bundles Section */
.bundles-section {
    background-color: white;
    padding: 6rem 0;
}

.bundles-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bundles-inner {
    text-align: center;
}

.bundles-header {
    margin-bottom: 4rem;
}

.bundles-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.bundles-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.bundles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bundles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bundle-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bundle-image {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.elegant-gradient {
    background: linear-gradient(135deg, #365314 0%, #1c2e05 100%);
}

.modern-gradient {
    background: linear-gradient(135deg, #4d7c0f 0%, #365314 100%);
}

.vibrant-gradient {
    background: linear-gradient(135deg, #65a30d 0%, #4d7c0f 100%);
}

.bundle-icon-container {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.bundle-content {
    padding: 2rem;
}

.bundle-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.bundle-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bundle-price-container {
    margin-bottom: 1.5rem;
}

.bundle-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.bundle-price-suffix {
    color: #6b7280;
    font-size: 1rem;
}

.bundle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.bundle-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.bundle-feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.bundle-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.bundle-button-elegant {
    background: darkolivegreen;
}

.bundle-button-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(85, 107, 47, 0.3);
    background: #556B2F;
}

.bundle-button-modern {
    background: darkolivegreen;
}

.bundle-button-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(85, 107, 47, 0.3);
    background: #556B2F;
}

.bundle-button-vibrant {
    background: darkolivegreen;
}

.bundle-button-vibrant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(85, 107, 47, 0.3);
    background: #556B2F;
}

/* Gallery Section */
.gallery-section {
    background: #f9fafb;
    padding: 6rem 0;
}

.gallery-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.gallery-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}