/* 3D Venue Swiper Styles */

.venue-3d-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(15, 15, 15, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}


.venue-3d-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 64, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.8;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dynamic background based on active venue */
.venue-3d-section.beach-active::before {
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 64, 0.1) 0%, transparent 50%);
}

.venue-3d-section.roof-active::before {
    background: 
        radial-gradient(circle at 20% 40%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 0, 64, 0.1) 0%, transparent 50%);
}

.venue-3d-section.garden-active::before {
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 64, 0.1) 0%, transparent 50%);
}

.venue-3d-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

/* Left Side - Venue Tabs */
.venue-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.venue-tab {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 220px;
}

.venue-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.venue-tab:hover::before {
    left: 100%;
}

.venue-tab:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(20px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.venue-tab.active {
    transform: perspective(1000px) rotateY(0deg) translateZ(30px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Active venue specific styling */
.venue-tab.active[data-venue="beach"] {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 
        0 40px 80px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(0, 191, 255, 0.3);
}

.venue-tab.active[data-venue="roof"] {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 
        0 40px 80px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(138, 43, 226, 0.3);
}

.venue-tab.active[data-venue="garden"] {
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 
        0 40px 80px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 140, 0, 0.3);
}

.venue-tab-icon {
    margin-bottom: 0.5rem;
    position: relative;
}

.venue-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.venue-tab:hover .venue-icon {
    stroke: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.venue-tab.active .venue-icon {
    stroke: #ffffff;
    transform: scale(1.2) rotate(10deg);
}

.venue-tab.active[data-venue="beach"] .venue-icon {
    stroke: #00bfff;
}

.venue-tab.active[data-venue="roof"] .venue-icon {
    stroke: #8a2be2;
}

.venue-tab.active[data-venue="garden"] .venue-icon {
    stroke: #ff8c00;
}

.venue-tab-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-tab[data-venue="beach"] .venue-tab-bg {
    background-image: url('https://lirp.cdn-website.com/35434a3c/dms3rep/multi/opt/Yu-Bodrum-32-1920w.jpg');
}

.venue-tab[data-venue="roof"] .venue-tab-bg {
    background-image: url('https://lirp.cdn-website.com/35434a3c/dms3rep/multi/opt/Yu-Bodrum-18-1920w.jpg');
}

.venue-tab[data-venue="garden"] .venue-tab-bg {
    background-image: url('https://lirp.cdn-website.com/35434a3c/dms3rep/multi/opt/Yu-Bodrum-1-1920w.jpeg');
}

.venue-tab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-tab:hover .venue-tab-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.venue-tab.active .venue-tab-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.venue-tab-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    border-radius: 0 0 20px 20px;
}

.venue-tab-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.venue-tab.active .venue-tab-title {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.venue-tab.active[data-venue="beach"] .venue-tab-title {
    color: #00bfff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.venue-tab.active[data-venue="roof"] .venue-tab-title {
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.venue-tab.active[data-venue="garden"] .venue-tab-title {
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.venue-tab-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    transition: color 0.4s ease;
}

.venue-tab:hover .venue-tab-subtitle,
.venue-tab.active .venue-tab-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Right Side - Content Area */
.venue-content-wrapper {
    position: relative;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.venue-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* Background transitions for each venue */
.venue-content-wrapper[data-active="beach"] .venue-background-layer {
    background: 
        linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(0, 0, 0, 0.3) 70%),
        url('https://lirp.cdn-website.com/35434a3c/dms3rep/multi/opt/Yu-Bodrum-32-1920w.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.venue-content-wrapper[data-active="roof"] .venue-background-layer {
    background: 
        linear-gradient(175deg,rgba(0, 0, 0, 0.87) 0%, rgba(0, 0, 0, 0.3) 70%),
        url('https://lirp.cdn-website.com/35434a3c/dms3rep/multi/opt/Yu-Bodrum-18-1920w.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.venue-content-wrapper[data-active="garden"] .venue-background-layer {
    background: 
        linear-gradient(175deg, rgba(12, 7, 1, 0.89) 0%, rgba(0, 0, 0, 0.3) 70%),
        url('https://lirp.cdn-website.com/35434a3c/dms3rep/multi/opt/Yu-Bodrum-1-1920w.jpeg');
    background-size: cover;
    background-position: center;
    opacity:1;
}

.venue-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.venue-content.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.venue-content-header {
    margin-bottom: 3rem;
}

.venue-content-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0040 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s ease;
}

.venue-content[data-venue="beach"] .venue-content-title {
    background: linear-gradient(135deg, #00bfff 0%,  #ff0040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.venue-content[data-venue="roof"] .venue-content-title {
    background: linear-gradient(135deg, #8a2be2 0%,  var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.venue-content[data-venue="garden"] .venue-content-title {
    background: linear-gradient(135deg, #ff8c00 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.venue-content-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Feature Cards Grid */
.venue-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.venue-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards;
}

.venue-feature-card:nth-child(1) { animation-delay: 0.2s; }
.venue-feature-card:nth-child(2) { animation-delay: 0.4s; }
.venue-feature-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.venue-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.venue-feature-card:hover::before {
    left: 100%;
}

.venue-feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.venue-feature-card:hover .feature-icon svg {
    stroke: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.venue-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.venue-feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .venue-3d-container {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
    
    .venue-content-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .venue-3d-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .venue-tabs-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .venue-tab {
        flex: 1;
        min-width: 280px;
        max-width: 320px;
        height: 180px;
        transform: perspective(1000px) rotateY(0deg) translateZ(0);
    }
    
    .venue-tab:hover,
    .venue-tab.active {
        transform: perspective(1000px) rotateY(0deg) translateZ(10px) scale(1.02);
    }
    
    .venue-content-title {
        font-size: 2.2rem;
    }
    
    .venue-content-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .venue-3d-section {
        padding: 60px 0;
    }
    
    .venue-3d-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .venue-tabs-wrapper {
        gap: 1rem;
    }
    .venue-tab-subtitle{
        display: none;
    }
    
    .venue-tab {
        min-width: auto;
        max-width: none;
        min-height: 160px;
    }
    
    .venue-tab-content {
        padding: 1.5rem;
    }
    
    .venue-tab-title {
        font-size: 1.2rem;
    }
    .feature-icon{
        display: none;
    }
    .venue-content {
        padding: 2rem;
    }
    
    .venue-content-title {
        font-size: 1.8rem;
    }
    
    .venue-content-description {
        font-size: 1rem;
    }
    
    .venue-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .venue-feature-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.venue-3d-section.loading * {
    animation: pulse 2s ease-in-out infinite;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .venue-tab,
    .venue-content,
    .venue-feature-card,
    .venue-background-layer {
        transition: none;
    }
    
    .venue-feature-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Light Theme Styles */
[data-theme="light"] .venue-3d-section {
    background: linear-gradient(135deg, 
        rgba(245, 242, 232, 0.95) 0%, 
        rgba(240, 237, 228, 0.98) 50%, 
        rgba(245, 242, 232, 0.95) 100%);
}

[data-theme="light"] .venue-3d-section::before {
    background: 
        radial-gradient(circle at 25% 25%, rgba(184, 114, 44, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .venue-3d-section.beach-active::before {
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .venue-3d-section.roof-active::before {
    background: 
        radial-gradient(circle at 20% 40%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .venue-3d-section.garden-active::before {
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .venue-tab {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 20px 40px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(184, 114, 44, 0.1);
}

[data-theme="light"] .venue-tab:hover {
    background: var(--card-bg);
    border-color: var(--glass-border);
    box-shadow: 
        0 30px 60px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(184, 114, 44, 0.2);
}

[data-theme="light"] .venue-tab.active {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    box-shadow: 
        0 40px 80px rgba(139, 69, 19, 0.25),
        inset 0 1px 0 rgba(184, 114, 44, 0.3);
}

[data-theme="light"] .venue-tab.active[data-venue="beach"] {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 
        0 40px 80px rgba(0, 191, 255, 0.15),
        inset 0 1px 0 rgba(0, 191, 255, 0.3);
}

[data-theme="light"] .venue-tab.active[data-venue="roof"] {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 
        0 40px 80px rgba(138, 43, 226, 0.15),
        inset 0 1px 0 rgba(138, 43, 226, 0.3);
}

[data-theme="light"] .venue-tab.active[data-venue="garden"] {
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 
        0 40px 80px rgba(255, 140, 0, 0.15),
        inset 0 1px 0 rgba(255, 140, 0, 0.3);
}

[data-theme="light"] .venue-icon {
    stroke: #fff;
}

[data-theme="light"] .venue-tab:hover .venue-icon {
    stroke: #fff;
}

[data-theme="light"] .venue-tab.active .venue-icon {
    stroke: #fff;
}

[data-theme="light"] .venue-tab.active[data-venue="beach"] .venue-icon {
    stroke: #fff;
}

[data-theme="light"] .venue-tab.active[data-venue="roof"] .venue-icon {
    stroke: #fff;
}

[data-theme="light"] .venue-tab.active[data-venue="garden"] .venue-icon {
    stroke: #fff;
}

[data-theme="light"] .venue-tab-title {
    color: #fff;
}

[data-theme="light"] .venue-tab.active .venue-tab-title {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px rgba(184, 114, 44, 0.3);
}

[data-theme="light"] .venue-tab.active[data-venue="beach"] .venue-tab-title {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

[data-theme="light"] .venue-tab.active[data-venue="roof"] .venue-tab-title {
    color: #fff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

[data-theme="light"] .venue-tab.active[data-venue="garden"] .venue-tab-title {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

[data-theme="light"] .venue-tab-subtitle {
    color: #fff;
}

[data-theme="light"] .venue-tab:hover .venue-tab-subtitle,
[data-theme="light"] .venue-tab.active .venue-tab-subtitle {
    color: #fff;
}

[data-theme="light"] .venue-content-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 20px 40px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(184, 114, 44, 0.1);
}

[data-theme="light"] .venue-content-title {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-red) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .venue-content[data-venue="beach"] .venue-content-title {
    background: linear-gradient(135deg, #fff 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .venue-content[data-venue="roof"] .venue-content-title {
    background: linear-gradient(135deg, #fff 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .venue-content[data-venue="garden"] .venue-content-title {
    background: linear-gradient(135deg, #fff 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .venue-content-description {
    color: #fff;
}

[data-theme="light"] .venue-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .venue-feature-card:hover {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    box-shadow: 
        0 20px 40px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(184, 114, 44, 0.2);
}

[data-theme="light"] .feature-icon svg {
    stroke:#fff;
}

[data-theme="light"] .venue-feature-card:hover .feature-icon svg {
    stroke:#fff;
}

[data-theme="light"] .venue-feature-card h4 {
    color: #fff;
}

[data-theme="light"] .venue-feature-card p {
    color: #fff;
}   



/* High contrast mode */
@media (prefers-contrast: high) {
    .venue-tab {
        border: 2px solid #ffffff;
    }
    
    .venue-tab.active {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .venue-content-wrapper {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}