/* Venue Spotlights Page Specific Styles */

.venues-main {
    background: white;
}

.venues-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.venues-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.venues-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Venue Filters */
.venue-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

/* Venue Categories */
.venue-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-filter {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Venue Grid */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.venue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.venue-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.venue-card:hover .venue-image img {
    transform: scale(1.05);
}

.venue-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.venue-info {
    padding: 30px;
}

.venue-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.venue-location {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.venue-location::before {
    content: '📍';
    font-size: 1rem;
}

.venue-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.venue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.venue-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Featured Venue Section */
.featured-venue {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.featured-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.featured-highlights li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-highlights li::before {
    content: '✨';
    font-size: 1rem;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Venue Showcase */
.venue-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.venue-gallery {
    position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: #667eea;
    transform: scale(1.05);
}

.venue-details h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.venue-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-location {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.venue-type {
    font-size: 1rem;
    color: #667eea;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-description {
    margin-bottom: 40px;
}

.venue-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* Venue Specs */
.venue-specs {
    margin-bottom: 40px;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
}

/* Lighting Features */
.lighting-features {
    margin-bottom: 30px;
}

.lighting-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.lighting-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lighting-features li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.lighting-features li:last-child {
    border-bottom: none;
}

.lighting-features strong {
    color: #667eea;
    font-weight: 600;
}

/* Venue Tips Section */
.venue-tips {
    padding: 80px 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tip-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #667eea;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}


/* Professional recommendation */

.professional-recommendation {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #667eea;
    margin-top: 40px;
}

.professional-recommendation h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.professional-recommendation p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Resource link */

.resource-link {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .venue-hero h1 {
        font-size: 2.5rem;
    }
    
    .venue-hero .lead {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .category-filter {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .venue-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .venue-actions {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .venue-hero {
        padding: 60px 0;
    }
    
    .venue-hero h1 {
        font-size: 2rem;
    }
    
    .venue-info {
        padding: 20px;
    }
    
    .venue-card {
        margin: 0 15px;
    }
    
    .featured-image img {
        height: 250px;
    }
}
