/* Modern Film & TV Production Venue Rental CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Modern Color Palette */
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --accent-secondary: #c0392b;
    --gold-color: #f39c12;
    --silver-color: #95a5a6;
    --text-color: #2c3e50;
    --text-light: #5d6d7e;
    --text-muted: #85929e;
    --text-dark: #1b2631;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-overlay: rgba(248, 249, 250, 0.95);
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --gradient-primary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
    --shadow-primary: 0 8px 25px rgba(231, 76, 60, 0.2);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-light);
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Smooth scrolling and modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Container - Ultra Wide */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Header - Clean */
.header {
    background: #1a1a1a;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
}

.header.scrolled {
    background: #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    position: relative;
    background-color: #1b2631;
}

.logo img {
    height: 110px;
    width: auto;
    z-index: 111;
    position: absolute;
    top: -40px;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
}
 

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav a.active::after {
    width: 100%;
}

/* Hero Section - Clean */
.hero {
    background: var(--gradient-light);
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 160px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons - Modern */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    position: relative;
}

.section {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    letter-spacing: -0.02em;
    margin-top: 100px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Venues Grid - Modern Cards */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.venue-card {
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    box-shadow: none;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.venue-card:hover {
    transform: none;
    box-shadow: none;
}

.venue-card:hover::before {
    opacity: 1;
}

.venue-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-darker);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 0;
}

.venue-card:hover .venue-image {
    transform: none;
}

.venue-content {
    padding: 0.8rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.venue-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.venue-description {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.venue-features {
    margin-bottom: 0.5rem;
}

.venue-features h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #f5f5f5;
    color: #666;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: none;
}

/* Filter Section - Modern */
.filter-section {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.filter-section h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
}

.filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 2rem;
    align-items: end;
}

.filter-form .form-group {
    margin-bottom: 0;
}

.filter-form .form-group label {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

.filter-form .form-group input,
.filter-form .form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.filter-form .form-group input:focus,
.filter-form .form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: var(--bg-card);
}

.filter-form .btn {
    height: fit-content;
    padding: 1.2rem 2.5rem;
    margin-top: 0;
}

/* Contact Form - Modern */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: var(--bg-card);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ff6b35" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

/* Footer - Clean */
.footer {
    background: var(--bg-white);
    color: var(--text-color);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-light);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--text-color);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* Loading & No Results */
.loading {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-muted);
}

.no-results h3 {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 600;
}

/* Statistics - Modern */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

/* Services - Modern */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* References - Modern */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.reference-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.reference-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.reference-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.reference-name {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.reference-project {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
}

/* Pagination - Modern */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0.8rem 1.2rem;
    background: var(--bg-card);
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.pagination-btn:hover {
    background: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.pagination-btn.active {
    background: var(--gradient-primary);
    color: var(--text-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-primary);
}

.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.venue-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .venues-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .logo img {
        height: 100px;
    }
    
    .logo {
        padding: 6px 12px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .header-content {
        min-height: 120px;
    }
    
    .nav {
        gap: 2rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .venue-content {
        padding: 2rem;
    }
    
    .filter-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-content {
        padding: 1.5rem;
    }
    
    .section {
        margin-bottom: 4rem;
    }
}

/* Venue Detail Page Styles */
.venue-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.venue-header {
    text-align: left;
    margin-bottom: 2rem;
    padding: 3rem 2rem 2rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.venue-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.venue-code {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.venue-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: none;
    margin: 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border: none;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
}

.photos-section {
    margin: 0;
    background: var(--bg-color);
    padding: 0 2rem 3rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0;
    max-width: 100%;
}

.photo-item {
    width: 100%;
    height: 250px;
    border-radius: 0;
    overflow: hidden;
    border: 3px solid white;
    transition: var(--transition);
    background: white;
}

.photo-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-item:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(26,26,26,0.95));
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    display: none;
    text-align: center;
    position: relative;
}

.gallery-slide.active {
    display: block;
    animation: zoomIn 0.4s ease-out;
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-slide img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2.5rem;
    padding: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    z-index: 10;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.gallery-prev {
    left: 3rem;
}

.gallery-next {
    right: 3rem;
}

.gallery-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close:hover {
    background: rgba(220, 38, 38, 0.8);
    border-color: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.gallery-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gallery-thumbnails {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    max-width: 80vw;
    overflow-x: auto;
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb.active {
    border-color: var(--accent-color);
    opacity: 1;
    transform: scale(1.1);
}

.gallery-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-section {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Venue Detail Mobile Styles */
@media (max-width: 768px) {
    .venue-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .venue-title {
        font-size: 1.5rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .photo-item {
        height: 200px;
    }
    
    .photos-section {
        padding: 0 1rem 2rem;
    }
    
    .gallery-nav {
        font-size: 2rem;
        padding: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .gallery-prev {
        left: 1rem;
    }
    
    .gallery-next {
        right: 1rem;
    }
    
    .gallery-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .gallery-slide img {
        max-width: 95vw;
        max-height: 75vh;
    }
    
    .gallery-thumbnails {
        bottom: 4rem;
        gap: 0.5rem;
    }
    
    .gallery-thumb {
        width: 50px;
        height: 50px;
    }
    
    .social-section div {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}