/* 
 * SPECULO'25 - Dharmaraja College Photographic Society
 * Main Stylesheet
 */

/* ==================== RESET & ROOT VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2a2a2a;
    --pure-white: #ffffff;
    --off-white: #f5f5f5;
    --gray: #808080;
    --light-gray: #d0d0d0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--pure-white);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary-black);
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 80px;  /* Default desktop size */
    width: auto;
}

/* Tablets */
@media (max-width: 992px) {
    .logo-img {
        height: 70px;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
}

.logo-hero {
    height: 120px;          /* Default desktop size */
    margin-bottom: 29px;
}

/* Tablets */
@media (max-width: 992px) {
    .logo-hero {
        height: 100px;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .logo-hero {
        height: 80px;
        margin-bottom: 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo-hero {
        height: 65px;
        margin-bottom: 15px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-bar {
    width: 25px;
    height: 2px;
    background: var(--primary-black);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--pure-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: #f0f0f0;
}

.grid-line.vertical {
    width: 2px;
    height: 100%;
    animation: slideDown 3s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    animation: slideRight 3s ease-in-out infinite;
}

@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes slideRight {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-black);
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-black);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--pure-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.cta-primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-primary:hover {
    color: var(--primary-black);
}

.cta-primary span {
    position: relative;
    z-index: 1;
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-black);
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-black);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
/* ==================== COMMITTEE SECTION ==================== */
/* Fluid background and padding */
.committee-section {
    width: 100%;
    background: #fafafa; /* Fluid background */
    padding: 4rem 0;
}
/* Centered container */
.committee-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* horizontal padding */
}
/* Section title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
/* Top Committee Grid */
.committee-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: end; /* Align cards to bottom */
}
/* Committee Cards */
.committee-card {
    background: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* President Card - Larger and Higher */
.committee-card:nth-child(2) {
    transform: scale(1.2) translateY(-30px);
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    z-index: 10;
}
.committee-card:nth-child(2)hover {
    transform: scale(1.2) translateY(-38px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* President Avatar - Larger */
.committee-card:nth-child(2) .committee-avatar {
    width: 150px;
    height: 150px;
    border: 4px solid #333;
}

/* President Name - Larger */
.committee-card:nth-child(2) .committee-name {
    font-size: 1.5rem;
}

/* President Role - Larger */
.committee-card:nth-child(2) .committee-role {
    font-size: 1.1rem;
}

/* Committee Avatar */
.committee-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #333;
}
.committee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
/* Committee Name & Role */
.committee-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}
.committee-role {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .committee-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .committee-card:nth-child(2) {
        transform: scale(1.1) translateY(-20px);
    }
    
    .committee-card:nth-child(2):hover {
        transform: scale(1.1) translateY(-28px);
    }
}

/* ==================== CAROUSEL ==================== */
.carousel-section {
    padding: 2rem 0;
}
/* No-photo avatar */
/* Cleaner, lighter professional no-photo avatar */
.carousel-avatar.no-photo {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #f3f3f3;
    color: #333;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 1px solid #ddd;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}



.carousel-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

/* Carousel Cards */
.carousel-card {
    min-width: 220px;
    background: #fff;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Carousel Avatar */
.carousel-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #333;

}

.carousel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Carousel Name & Role */
.carousel-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.carousel-role {
    color: #666;
    font-size: 0.9rem;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #555;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.carousel-dot.active {
    background: #333;
    width: 20px;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-card {
        min-width: 180px;
    }
    .committee-avatar {
        width: 100px;
        height: 100px;
    }
}


/* ==================== COUNTDOWN SECTION ==================== */
.countdown-section {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 4rem 2rem;
    text-align: center;
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    min-width: 120px;
    border: 2px solid var(--pure-white);
    padding: 1rem;
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    border: 2px solid var(--primary-black);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background: var(--pure-white);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-black);
    transition: height 0.3s ease;
    z-index: 0;
}

.category-card:hover::after {
    height: 100%;
}

.category-card:hover {
    color: var(--pure-white);
    transform: translateY(-10px);
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.category-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.submission-limit {
    padding: 0.5rem 1rem;
    border: 1px solid;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== GUIDELINES SECTION ==================== */
.guidelines-content {
    max-width: none !important;
    margin: 0 auto;
}

.guideline-item {
    padding: 2rem;
    border-left: 3px solid var(--primary-black);
    margin-bottom: 2rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.guideline-item:hover {
    background: var(--pure-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.guideline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guideline-list {
    list-style: none;
    padding-left: 0;
}

.guideline-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.guideline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* ==================== SUBMISSION SECTION ==================== */
/* ✅ HIDE the old ugly success message */
.success-message {
    display: none !important;
}

/* ✅ Enhanced form styling */
.form-input,
.form-select {
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* ✅ Submit button states */
.submit-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.submit-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.submit-button:not(:disabled):active {
    transform: translateY(0);
}

/* ✅ File upload area improvements */
.file-upload-area {
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.file-upload-label {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.file-upload-label:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.file-upload-label:active {
    transform: translateY(0);
}

/* ✅ File info styling */
.file-info {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.file-info:not(:empty) {
    background: rgba(76, 175, 80, 0.1);
}

/* ✅ Category section animations */
.category-upload-section {
    animation: slideIn 0.3s ease;
    transition: all 0.3s ease;
}

.category-upload-section:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ Remove category button hover effect */
button[onclick^="removeCategoryUpload"]:hover {
    background: #c0392b !important;
    transform: scale(1.05);
}

button[onclick^="removeCategoryUpload"]:active {
    transform: scale(0.95);
}

/* ✅ Add category button states */
.add-category-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none !important;
}

.add-category-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
}

/* ✅ Toast container responsive */
@media (max-width: 768px) {
    #toastContainer {
        right: 10px;
        left: 10px;
        top: 70px;
    }
    
    .toast {
        min-width: auto !important;
        max-width: 100% !important;
    }
}

/* ✅ Loading state for submit button */
.submit-button:disabled::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.submission-section {
    background: var(--primary-black);
    color: var(--pure-white);
    text-align: center;
    max-width: none !important;
}

.submission-section .section-title {
    color: var(--pure-white);
}

.submission-section .section-title::after {
    background: var(--pure-white);
}

.submission-form {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-input, .form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--pure-white);
    background: transparent;
    color: var(--pure-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus, .form-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.form-select option {
    background: var(--primary-black);
    color: var(--pure-white);
}

.category-uploads {
    margin-top: 2rem;
}

.category-upload-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.category-upload-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.file-upload-area {
    margin-bottom: 1rem;
}

.file-upload-label {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed var(--pure-white);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.file-upload-label:hover {
    background: rgba(255, 255, 255, 0.15);
}

.file-upload-input {
    display: none;
}

.file-info {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

.add-category-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.add-category-btn:hover:not(:disabled) {
    background: var(--pure-white);
    color: var(--primary-black);
}

.add-category-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--pure-white);
    color: var(--primary-black);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-button:hover:not(:disabled) {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    background: #4caf50;
    color: white;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: none;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--pure-white);
    border-top: 1px solid #e0e0e0;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-black);
}


.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-black);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==================== ADMIN LINK ==================== */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-black);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.admin-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .carousel-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--pure-white);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .countdown-grid {
        gap: 1.5rem;
    }

    .countdown-value {
        font-size: 3rem;
        min-width: 80px;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .carousel-card {
        min-width: 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}