/* Festival Theme Colors */
:root {
    --festival-red: #FF3B30;
    --festival-green: #00CD8E;
    --festival-blue: #0742C0;
    --festival-yellow: #FFCC00;
    --festival-purple: #9013FE;
    --festival-orange: #FF9500;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Header & Navigation */
.navbar-dark {
    background-color: #1A0536 !important;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Festival Header */
.festival-header {
    background: linear-gradient(to right, var(--festival-purple), var(--festival-blue), var(--festival-red));
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.festival-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="10" fill="%23FFFFFF10"/></svg>');
    opacity: 0.1;
}

.main-logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
}

.display-4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section-title {
    font-weight: 700;
    color: var(--festival-purple);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--festival-red), var(--festival-blue));
}

/* Event Cards */
.event-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: none;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.event-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.event-card .card-body {
    padding: 1.5rem;
}

.event-card .card-title {
    font-weight: 700;
    color: var(--festival-purple);
    margin-bottom: 1rem;
}

.festival-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--festival-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.event-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Payment Section */
.payment-section {
    background-color: #F8F1FF;
}

.payment-options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-logo {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.coming-soon-badge {
    background: var(--festival-yellow);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background-color: #F8F1FF;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #DDD;
}

.contact-form .form-control:focus {
    border-color: var(--festival-purple);
    box-shadow: 0 0 0 0.25rem rgba(144, 19, 254, 0.25);
}

/* Buttons */
.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--festival-purple);
    border-color: var(--festival-purple);
}

.btn-primary:hover {
    background-color: darken(var(--festival-purple), 10%);
    border-color: darken(var(--festival-purple), 10%);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--festival-green);
    border-color: var(--festival-green);
}

.btn-success:hover {
    background-color: darken(var(--festival-green), 10%);
    border-color: darken(var(--festival-green), 10%);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--festival-blue);
    color: var(--festival-blue);
}

.btn-outline-primary:hover {
    background-color: var(--festival-blue);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1A0536;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-logo {
        width: 180px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .event-card .card-img-top {
        height: 180px;
    }
}
