/* Brighton Theme CSS - Brighton Dance Centre */

/* Brighton-specific styling and branding */

/* Brighton Color Overrides */
.brighton-accent {
    color: var(--primary-color);
}

.brighton-bg {
    background-color: var(--bg-light);
}

/* Brighton Wave Pattern */
.wave-pattern {
    position: relative;
    overflow: hidden;
}

.wave-pattern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300CED1' fill-opacity='0.3' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* Brighton Pavilion Inspired Patterns */
.pavilion-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-color) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--accent-color) 0%, transparent 50%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.1;
}

/* Seaside Elements */
.seaside-gradient {
    background: linear-gradient(135deg, #00CED1 0%, #4ECDC4 50%, #FFD93D 100%);
}

/* Brighton-specific Typography */
.brighton-heading {
    position: relative;
    display: inline-block;
}

.brighton-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Festival-inspired elements */
.festival-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Brighton Beach Pebble Effect */
.pebble-bg {
    background-image: 
        radial-gradient(circle at 25% 25%, #e0e0e0 2%, transparent 2%),
        radial-gradient(circle at 75% 75%, #d0d0d0 2%, transparent 2%),
        radial-gradient(circle at 50% 50%, #f0f0f0 3%, transparent 3%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px, 10px 10px;
}

/* LGBTQ+ Pride Elements */
.pride-gradient {
    background: #00CED1;
    height: 4px;
    width: 100%;
}

/* Brighton Pier Lights Animation */
@keyframes pier-lights {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pier-lights {
    animation: pier-lights 2s ease-in-out infinite;
}

/* Local Landmark Icons */
.brighton-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.brighton-icon.pier {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%2300CED1"/></svg>');
}

.brighton-icon.pavilion {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="80" height="80" fill="%236B5B95"/></svg>');
}

/* Responsive Brighton Theme */
@media (max-width: 768px) {
    .wave-pattern::before {
        height: 50px;
    }
    
    .brighton-heading::after {
        width: 40px;
        height: 3px;
    }
}