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

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Background Setup */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* REPLACE THIS URL WITH YOUR OWN IMAGE */
    background-image: url('/IMG_2026.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.3) 0%, rgba(60, 40, 80, 0.2) 100%);
}

/* Content Layout */
.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;            /* Push content down from top */
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
}

/* Frosted Glass Title Card */
.title-card {
    margin-top: 50px;             /* Add space from top */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.title-card h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.2),
        0 2px 0 rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 0, 0, 0.2);  /* Glow effect */
    letter-spacing: -1px;
}

.title-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.2),
        0 2px 0 rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 0, 0, 0.2);  /* Glow effect */
}

/* Secondary Message Card */
/* AFTER (transparent) */
.message-card {
    background: transparent;           /* Fully transparent */
    padding: 20px 30px;                /* Reduced padding since no card bg */
    border-radius: 0;                  /* No corners needed */
    border: none;                      /* Remove border too */
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.message-card h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.message-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);  /* Burgundy to brown-red */
    color: white;
    padding: 14px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.5);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.7);
    background: linear-gradient(135deg, #900028 0%, #b83a3a 100%);  /* Lighter on hover */
}

/* Year Toggle Button Only */
.year-toggle {
    background: rgba(20, 40, 80, 0.9);
    border: 1px solid rgba(100, 150, 255, 0.4);
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.year-toggle:hover {
    background: rgba(30, 60, 100, 0.95);
    border-color: rgba(180, 220, 255, 0.6);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 150, 255, 0.4);
}

.year-display {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.arrow {
    color: rgba(200, 220, 255, 0.7);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.arrow.rotate {
    transform: rotate(180deg);
}

/* Year Dropdown Menu */
.year-dropdown {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 40, 80, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 150, 255, 0.4);
    border-radius: 20px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.year-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.year-option {
    background: transparent;
    color: rgba(200, 220, 255, 0.7);
    border: none;
    padding: 10px 20px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.year-option:hover {
    background: rgba(50, 80, 130, 0.7);
    color: rgba(255, 255, 255, 0.95);
}

.year-option.active {
    background: rgba(100, 150, 255, 0.6);
    color: white;
    font-weight: 600;
}

/* Smooth background transition */
.background-image {
    transition: background-image 0.5s ease-in-out;
}

/* Responsive */
@media (max-width: 480px) {
    .year-toggle {
        padding: 8px 16px;
        min-width: 140px;
        bottom: 15px;
    }
    
    .year-dropdown {
        bottom: 60px;
        min-width: 150px;
    }
    
    .year-option {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* Smooth transition for background change */
.background-image {
    transition: background-image 0.5s ease-in-out;
}

/* Remove link styling */
a {
    color: rgba(255, 255, 255, 0.7);  /* Match footer text color */
    text-decoration: underline;        /* Keep underline */
    text-decoration-color: rgba(255, 255, 255, 0.5);  /* Subtle underline */
    transition: color 0.3s ease;
}

/* Optional hover effect */
a:hover {
    color: white;
    text-decoration-color: rgba(255, 255, 255, 0.9);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-card {
        padding: 30px 25px;
    }

    .title-card h1 {
        font-size: 2rem;
    }

    .message-card {
        padding: 25px 30px;
    }
}

/* Navigation Arrows */
.nav-arrow {
    position: fixed;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 40, 80, 0.7);
    border: 1px solid rgba(100, 150, 255, 0.3);
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 220, 255, 0.8);
}

.nav-arrow:hover {
    background: rgba(30, 60, 100, 0.9);
    border-color: rgba(150, 200, 255, 0.5);
    color: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(100, 150, 255, 0.3);
}

.nav-left {
    left: 20px;
}

.nav-right {
    right: 20px;
}

/* Disabled state */
.nav-arrow[style*="opacity: 0.3"] {
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive */
@media (max-width: 480px) {
    .nav-arrow {
        width: 48px;
        height: 48px;
        bottom: 15px;
    }
    
    .nav-left {
        left: 10px;
    }
    
    .nav-right {
        right: 10px;
    }
}
