@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;700&display=swap');


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comfortaa', sans-serif; /* Applying Comfortaa font globally */
    text-decoration: none;
    outline: none;
    border: none;
    transition: all 0.2s linear;
}

html {
    font-size: 50% !important; /* 1rem = 10px */
    scroll-behavior: smooth !important;
    box-sizing: border-box !important;
}

body {
    background-color: #f9f9f9;
    color: #fff;
    line-height: 1.6;
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none !important;
}
/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2%;
}

.site-header .flex {
    width: 100%;
}

.brand-logo {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1.5rem;
    position: relative;
}

.nav-link {
    color: #333;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #6a11cb;
}

.nav-link:hover::after {
    width: 100%;
}

/* Action Icons */
.action-icons {
    display: flex;
    align-items: center;
}

.action-icon {
    margin-left: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
}

.action-icon:hover {
    color: #6a11cb;
    transform: translateY(-3px);
}

.hamburger-menu {
    display: none;
    font-size: 2.4rem;
    margin-left: -44px;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 2rem;
    width: 30rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transform-origin: top right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.active {
    transform: scale(1);
    opacity: 1;
}

.user-dropdown p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 500;
}

.user-dropdown .button {
    display: block;
    width: 100%;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-button {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}

.primary-button:hover {
    background: linear-gradient(135deg, #5800c4 0%, #1a68e3 100%);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    color: white !important;
    text-decoration: none !important;
}

.secondary-button {
    background: #f0f0f0;
    color: #333;
}

.secondary-button:hover {
    background: #e0e0e0;
    color: white !important;
    text-decoration: none !important;
}

.danger-button {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #fff;
}

.danger-button:hover {
    background: linear-gradient(135deg, #e03158 0%, #e73c1e 100%);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        color: white !important;
    text-decoration: none !important;
}

/* Authentication Modal */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-box {
    background: #fff;
    border-radius: 1rem;
    width: 40rem;
    max-width: 90%;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.auth-overlay.active .auth-box {
    transform: translateY(0);
    opacity: 1;
}

.auth-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-close:hover {
    color: #ff416c;
    transform: rotate(90deg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    width: 8rem;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1.6rem;
    color: #666;
}

.input-field {
    position: relative;
    margin-bottom: 2.5rem;
}

.input-field input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.input-field input:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0.5rem rgba(106, 17, 203, 0.3);
}

.input-field label {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label {
    top: 0;
    left: 1rem;
    font-size: 1.2rem;
    background: #fff;
    padding: 0 0.5rem;
    color: #6a11cb;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #6a11cb;
}

.auth-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.auth-button:hover {
    background: linear-gradient(135deg, #5800c4 0%, #1a68e3 100%);
    box-shadow: 0 0.5rem 1.5rem rgba(106, 17, 203, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
}

.auth-link {
    color: #6a11cb;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-link:hover {
    text-decoration: underline;
    color: #5800c4;
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    animation: slideIn 0.3s ease forwards;
}

.notification span {
    font-size: 1.5rem;
    color: #333;
    margin-right: 2rem;
}

.notification i {
    cursor: pointer;
    color: #666;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.notification i:hover {
    color: #ff416c;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 1rem 2rem;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
    }
    
    .user-dropdown {
        width: 25rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 45%;
    }
    
    .action-icon {
        margin-left: 1.5rem;
    }
    
    .user-dropdown {
        width: 90%;
        right: 5%;
    }
}

    
              :root {
            --epulse-color-primary: #4f46e5; /* Indigo */
            --epulse-color-primary-light: #6366f1;
            --epulse-color-primary-lighter: #818cf8;
            --epulse-color-success: #10b981; /* Green */
            --epulse-color-error: #ef4444; /* Red */
            --epulse-color-background-light: #f9fafb; /* Very light gray */
            --epulse-color-background-page: #ffffff; /* White */
            --epulse-color-text-primary: #1f2937; /* Darker Gray */
            --epulse-color-text-secondary: #6b7280; /* Medium Gray */
            --epulse-color-border: #e5e7eb; /* Light Gray Border */
            
            --epulse-border-radius-medium: 10px; /* For general elements */
            --epulse-border-radius-large: 20px; /* For cards, main containers */
            --epulse-border-radius-pill: 50px; /* For pill buttons */

            --epulse-shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
            --epulse-shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            
            --epulse-font-family-sans: 'Arial', sans-serif; /* Example: Replace with your chosen clean font */
            
            --epulse-transition-fast: all 0.2s ease-in-out;
            --epulse-transition-normal: all 0.3s ease-in-out;
        }
        /* Site Footer */
        .site-footer {
            background-color: var(--epulse-color-background-page);
            padding: 4rem 2rem;
            border-top: 1px solid var(--epulse-color-border);
            text-align: center; /* Center footer content by default */
        }
        .site-footer__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left; /* Align text left within columns */
        }
        .site-footer__column-title {
            font-size: 2rem; /* Adjusted */
            color: var(--epulse-color-primary);
            margin-bottom: 1.8rem;
            text-transform: capitalize;
            font-weight: 600;
        }
        .site-footer__link {
            display: block;
            font-size: 1.6rem; /* Adjusted */
            color: var(--epulse-color-text-secondary);
            padding: 0.8rem 0;
            transition: var(--epulse-transition-fast);
        }
        .site-footer__link:hover {
            color: var(--epulse-color-primary);
            transform: translateX(4px);
            text-decoration: none;
        }
        .site-footer__link i {
            margin-right: 1rem;
            width: 1.5em; /* Ensure icons align well */
            text-align: center;
            transition: transform 0.3s ease;
        }
        .site-footer__link:hover i {
            transform: rotate(5deg); /* Subtle icon animation */
        }
        .site-footer__credits {
            grid-column: 1 / -1; /* Span all columns if using grid for single line */
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--epulse-color-border);
            font-size: 1.6rem; /* Adjusted */
            color: var(--epulse-color-text-secondary);
        }
        .site-footer__credits-brand {
            color: var(--epulse-color-primary);
            font-weight: 600;
        }

        /* Scroll to Top Button */
        .scroll-to-top-button {
            position: fixed;
            bottom: 2.5rem;
            right: 2.5rem;
            background-color: var(--epulse-color-primary);
            color: var(--epulse-color-background-page);
            width: 5rem; /* Adjusted */
            height: 5rem; /* Adjusted */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--epulse-transition-normal), transform 0.3s ease;
            z-index: 1000;
            box-shadow: var(--epulse-shadow-medium);
        }
        .scroll-to-top-button.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .scroll-to-top-button:hover {
            background-color: var(--epulse-color-primary-light);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .scroll-to-top-button i {
            font-size: 2.2rem; /* Adjusted */
        }

        /* Responsive Design Adjustments */
        @media (max-width: 991px) { /* Tablets */
            h1 { font-size: 3.4rem; }
            h2 { font-size: 2.8rem; }
            h3 { font-size: 2.5rem; } /* Form Title */
            .auth-form-card { padding: 3rem 2.5rem; max-width: 450px; }
        }

        @media (max-width: 768px) { /* Large Mobile / Small Tablets */
            html { font-size: 58%; } /* Slightly smaller base for smaller screens */
            .page-content-wrapper { padding: 3rem 1.5rem; }
            .auth-form-card { padding: 2.5rem 2rem; }
            .auth-form-card__title { font-size: 2.6rem; }
            .site-footer__grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
        }

        @media (max-width: 576px) { /* Mobile */
            html { font-size: 55%; } /* Further adjustment */
            .page-content-wrapper { padding: 2.5rem 1rem; }
            .auth-form-card { padding: 2.5rem 1.5rem; }
            .auth-form-card__title { font-size: 2.4rem; margin-bottom: 2rem; }
            .form-input-field { padding: 1.5rem 1.6rem; font-size: 1.7rem; }
            .button-base { padding: 1.4rem 2.5rem; font-size: 1.7rem; }
            .form-feedback-message { font-size: 1.6rem; padding: 1.2rem; }
            
            .site-footer__column-title { font-size: 1.9rem; }
            .site-footer__link { font-size: 1.55rem; }
            .site-footer__credits { font-size: 1.5rem; }
            .scroll-to-top-button { width: 4.5rem; height: 4.5rem; bottom: 1.5rem; right: 1.5rem; }
            .scroll-to-top-button i { font-size: 2rem; }
        }
    
