/* ===== VENUES PREMIUM STYLES ===== */

/* CSS Variables for consistency */
:root {
    --venue-primary-gold: #D4AF37;
    --venue-gold-light: #E6C659;
    --venue-gold-dark: #B8941F;
    --venue-dark: #1a1a1a;
    --venue-dark-alt: #2d2d2d;
    --venue-text-light: #666666;
    --venue-text-dark: #333333;
    --venue-bg-light: #f8f9fa;
    --venue-white: #ffffff;
    --venue-shadow-light: rgba(0, 0, 0, 0.08);
    --venue-shadow-medium: rgba(0, 0, 0, 0.15);
    --venue-shadow-dark: rgba(0, 0, 0, 0.25);
    --venue-gold-shadow: rgba(212, 175, 55, 0.3);
    --venue-gold-shadow-strong: rgba(212, 175, 55, 0.6);
    --venue-max-width: 1200px;
    --venue-border-radius: 20px;
    --venue-border-radius-small: 12px;
    --venue-transition: all 0.3s ease;
}

/* ===== HERO SECTION PREMIUM ===== */
.venue-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--venue-white);
    overflow: hidden;
}

.venue-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(212,175,55,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.venue-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="venue-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="30" r="0.5" fill="%23c9a96e" opacity="0.08"/><circle cx="30" cy="10" r="0.8" fill="%23b8941f" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23venue-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 2;
}

.venue-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.venue-hero-content {
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.venue-hero-content .container {
    margin-bottom: 3rem;
}

.breadcrumb-spaces {
    color: var(--venue-primary-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--venue-transition);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
}

.breadcrumb-spaces:hover {
    color: var(--venue-white);
    background: var(--venue-primary-gold);
    border-color: var(--venue-primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--venue-gold-shadow);
}

.venue-hero-content span {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.venue-title {
    font-size: 5rem;
    line-height: 1.1;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.venue-name {
    display: block;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.venue-name.gold {
    background: linear-gradient(135deg, #ffffff 0%, var(--venue-primary-gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.venue-tagline {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ===== BUTTON STYLES PREMIUM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--venue-transition);
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px var(--venue-shadow-light);
    margin-top: 2rem;
}

.btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--venue-primary-gold), var(--venue-gold-light));
    color: var(--venue-dark);
    box-shadow: 0 8px 30px var(--venue-gold-shadow);
    font-weight: 800;
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--venue-gold-shadow-strong);
    color: var(--venue-dark);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    border-radius: 60px;
}

/* ===== VENUE DETAILS SECTION ===== */
.venue-details {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--venue-bg-light) 0%, var(--venue-white) 50%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.venue-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="details-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="%23d4af37" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9a96e" opacity="0.04"/><circle cx="40" cy="40" r="1" fill="%23b8941f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23details-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: var(--venue-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ===== SECTION HEADERS PREMIUM ===== */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--venue-primary-gold), var(--venue-gold-light));
    color: var(--venue-white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px var(--venue-gold-shadow);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--venue-dark);
    margin: 0 0 2rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--venue-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--venue-primary-gold), var(--venue-gold-light));
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px var(--venue-gold-shadow);
}

/* ===== FEATURES GRID PREMIUM ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--venue-white) 0%, #f9fafb 100%);
    border-radius: var(--venue-border-radius);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--venue-transition);
    box-shadow: 0 15px 50px var(--venue-shadow-light);
    border: 1px solid rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--venue-primary-gold), var(--venue-gold-light));
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--venue-gold-shadow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--venue-transition);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px var(--venue-shadow-medium);
    border-color: rgba(212,175,55,0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--venue-primary-gold), var(--venue-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--venue-white);
    font-size: 2rem;
    box-shadow: 0 8px 25px var(--venue-gold-shadow);
    transition: var(--venue-transition);
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px var(--venue-gold-shadow-strong);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--venue-text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--venue-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--venue-text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--venue-primary-gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* ===== GALLERY SECTION PREMIUM ===== */
.venue-gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--venue-dark) 0%, var(--venue-dark-alt) 100%);
    color: var(--venue-white);
    position: relative;
    overflow: hidden;
}

.venue-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="gallery-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23d4af37" opacity="0.15"/><circle cx="20" cy="20" r="1" fill="%23c9a96e" opacity="0.1"/><circle cx="60" cy="60" r="1.5" fill="%23b8941f" opacity="0.12"/></pattern></defs><rect width="200" height="200" fill="url(%23gallery-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--venue-border-radius);
    overflow: hidden;
    transition: var(--venue-transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--venue-transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(212,175,55,0.3) 100%);
    opacity: 0;
    transition: var(--venue-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--venue-white);
}

.gallery-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== CTA SECTION PREMIUM ===== */
.venue-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--venue-dark) 0%, var(--venue-dark-alt) 50%, var(--venue-dark) 100%);
    color: var(--venue-white);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.venue-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="cta-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23d4af37" opacity="0.15"/><circle cx="20" cy="20" r="1" fill="%23c9a96e" opacity="0.1"/><circle cx="60" cy="60" r="1.5" fill="%23b8941f" opacity="0.12"/><path d="M0,40 Q20,20 40,40 T80,40" stroke="%23d4af37" stroke-width="0.5" fill="none" opacity="0.08"/></pattern></defs><rect width="200" height="200" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.venue-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--venue-gold-shadow) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.2; }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--venue-border-radius);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--venue-primary-gold), var(--venue-gold-light), var(--venue-primary-gold), transparent);
    border-radius: var(--venue-border-radius) var(--venue-border-radius) 0 0;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--venue-white) 0%, var(--venue-primary-gold) 50%, var(--venue-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 20px var(--venue-gold-shadow);
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--venue-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 50px;
    opacity: 0;
    transition: var(--venue-transition);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--venue-white);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--venue-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .venue-title { font-size: 4rem; }
    .section-title { font-size: 3rem; }
    .cta-content h2 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .venue-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 768px) {
    .venue-hero { min-height: 80vh; background-attachment: scroll; }
    .venue-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .venue-details, .venue-gallery, .venue-cta { padding: 6rem 0; }
    .features-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    .cta-content { padding: 3rem 2rem; }
    .cta-content h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .venue-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .venue-hero { min-height: 70vh; padding: 4rem 0; }
    .venue-details, .venue-gallery, .venue-cta { padding: 4rem 0; }
    .feature-card { padding: 2rem 1.5rem; }
    .cta-content { padding: 2rem 1.5rem; }
    .cta-content h2 { font-size: 2rem; }
    .btn { padding: 1rem 2rem; font-size: 1rem; }
    .btn-large { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--venue-primary-gold);
    color: var(--venue-dark);
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
    .venue-hero::before,
    .venue-hero::after,
    .venue-details::before,
    .venue-gallery::before,
    .venue-cta::before,
    .venue-cta::after {
        display: none;
    }
    
    .venue-hero {
        background: none;
        color: black;
        min-height: auto;
    }
    
    .btn {
        border: 2px solid black;
        background: white;
        color: black;
    }
}