:root {
    --primary-blue: #0F355A;
    --secondary-blue: #1E5F8F;
    --accent-purple: #6C63FF;
    --gradient-1: linear-gradient(135deg, #0F355A 0%, #1E5F8F 50%, #6C63FF 100%);
    --gradient-2: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-1);
    z-index: -2;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g"><stop offset="20%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="50%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="20" fill="url(%23g)"><animate attributeName="cy" values="0;100;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="15" fill="url(%23g)"><animate attributeName="cy" values="100;0;100" dur="4s" repeatCount="indefinite"/></circle></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Hero Section */
.hero-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.3));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(108, 99, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    /* margin-bottom: 2rem; */
    font-weight: 300;
}

.event-details {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.detail-item {
    display: flex;
    align-items: center;
    color: white;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.detail-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #4ECDC4;
}

.cta-button {
    background: var(--gradient-2);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.6);
    color: white;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Featured Artist Section */
.artist-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.artist-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
}

.artist-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

/* Why Attend Section */
.why-attend {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(15, 53, 90, 0.8), rgba(30, 95, 143, 0.8));
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.5);
}

.feature-icon {
    font-size: 3rem;
    color: #4ECDC4;
    margin-bottom: 1.5rem;
    display: block;
}

/* Tickets Section */
.tickets-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.7);
}

.ticket-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-card.featured {
    border-color: #4ECDC4;
    transform: scale(1.05);
}

.ticket-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(108, 99, 255, 0.5);
}

.ticket-price {
    font-size: 3rem;
    font-weight: 800;
    color: #4ECDC4;
    margin: 1rem 0;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ECDC4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .event-details {
        padding: 1.5rem;
    }

    .detail-item {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.single-carousel-container {
    width: 320px;
    margin: 0 auto;
}

.carousel-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(108, 99, 255, 0.4);
    border: 4px solid white;
}

.carousel-circle img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    transition: opacity 0.5s ease;
}

.carousel-controls button {
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating {
    animation: rotateClockwise 15s linear infinite;
    transform-origin: center;
}

.carousel-caption-custom {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F355A;
    background-color: #ffffffcc;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-item:hover .carousel-caption-custom {
    transform: scale(1.05);
}

/* Navbar  */
/* Improved Header Styles */
.navbar {
    background-color: #0F355A !important;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-brand img {
        height: 60px;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #fff !important;
    border-bottom: 3px solid #fff;
    border-radius: 0;
}

.search-container {
    position: relative;
    max-width: 300px;
    margin-left: auto;
}

.search-input {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-input:focus {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0F355A;
    cursor: pointer;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(15, 53, 90, 0.98);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .search-container {
        margin: 1rem auto 0;
        max-width: 100%;
    }
}

/* Smooth transitions */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Footer improvements */
.footer {
    background: #0F355A !important;
    padding: 2rem 0;
}

.footer .nav-link {
    padding: 0.25rem 0.5rem !important;
}

.full-width-hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .f_a {
        margin-top: 4.5rem;
    }
}
