/* Custom Color Palette based on reference design */

:root {
    --theme-bg: #FCF8EE;
    --theme-primary-yellow: #ECA827;
    --theme-text-dark: #2C2825;
    --theme-text-muted: #6C665F;
}

/*body {
    background-color: var(--theme-bg);
    color: var(--theme-text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}*/
body {
    /* ????????????????????? */
    background-color: #FAFBF9;
    color: #333333;
}

/* Navbar Header Styling */
#header {
    background-color: var(--theme-bg);
    padding: 8px 0;
    transition: all 0.3s;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 62px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-badge {
    width: 36px;
    height: 36px;
    background-color: var(--theme-primary-yellow);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--theme-primary-yellow);
    margin: 0;
}

/* Nav Menu Items */
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.navbar a.nav-link {
    font-weight: 600;
    color: var(--theme-text-dark);
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    font-size: 0.95rem;
}

    .navbar a.nav-link:hover,
    .navbar a.nav-link.active {
        color: var(--theme-primary-yellow);
    }

        /* Active underline bar like in image */
        .navbar a.nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--theme-primary-yellow);
            border-radius: 2px;
        }

/* Action Icons on Right */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.action-icon-btn {
    color: var(--theme-text-dark);
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-icon-btn:hover {
        color: var(--theme-primary-yellow);
    }

.user-avatar-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #E2CFAB;
    color: #5C4B33;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
}

    .user-avatar-btn:hover {
        background-color: var(--theme-primary-yellow);
        color: #FFFFFF;
    }

:root {
    --theme-bg: #FCF8EE;
    --theme-card-bg: #FFFDF7;
    --theme-primary-yellow: #ECA827;
    --theme-accent-yellow: #D99014;
    --theme-text-dark: #2C2825;
    --theme-text-muted: #6C665F;
    --theme-card-border: #F1E5C8;
    --status-verified: #28a745;
    --status-pending: #ffc107;
    --status-self: #6c757d;
}

/* Hero Section 
.hero-section {
    padding: 60px 0 40px;
}*/

.hero-section,
header,
.navbar {
    background-color: #FAFBF9; /* ? body ??????? #FFFFFF ?? */
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--theme-text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--theme-text-muted);
    margin-top: 15px;
    margin-bottom: 25px;
}

.btn-record {
    background-color: var(--theme-primary-yellow);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 10px rgba(236, 168, 39, 0.3);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-club {
    background-color: var(--theme-primary-yellow);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 10px rgba(236, 168, 39, 0.3);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: flex; /* Changed from inline-flex to flex */
    align-items: center;
    justify-content: center; /* Centers the text horizontally */
    width: 100%; /* Ensures the button expands to fill the container */
    gap: 8px;
}

    .btn-record:hover {
        background-color: var(--theme-accent-yellow);
        color: #ffffff;
        transform: translateY(-2px);
    }

/* Features Section 
.features-section {
    padding: 40px 0;
}*/

/* Section Base Background */
.features-section {
    background-color: #FAFBF9;
}

/* Card Styling & Hover Effects */
.feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

    .feature-card.hover-lift:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06) !important;
    }

/* Circular Icon Styling */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFFDF0; /* Light warm tint */
    border: 2px solid #ECA827; /* Gold accent border */
    color: #D98E04;
    font-size: 1.5rem;
}

/* Title & Text Typography */
.feature-card-title {
    color: #2D3748;
    line-height: 1.3;
}

.feature-card-text {
    line-height: 1.5;
    color: #6C757D;
}

/* Disclaimer Styling */
.disclaimer-text {
    font-size: 0.825rem;
    color: #8C939D;
}


.section-header-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--theme-text-dark);
    margin-bottom: 30px;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--theme-primary-yellow);
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--theme-accent-yellow);
    font-size: 1.6rem;
}

/*.feature-card {
    text-align: center;
    padding: 10px;
}*/
.feature-card,
.stats-card,
.summary-card {
    background-color: #FFFFFF; /* ??????????????? */
    border: 1px solid #EFEFEF; /* ??????????? */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); /* ?????? */
}
    .feature-card h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.88rem;
        color: var(--theme-text-muted);
        line-height: 1.4;
    }



/* Impact Summary Section */
.summary-card {
    background-color: var(--theme-card-bg);
    border: 1px solid var(--theme-card-border);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.total-hours-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--theme-text-dark);
    line-height: 1;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #FFFFFF;
    border: 1px solid var(--theme-card-border);
    border-radius: 12px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--theme-text-dark);
    transition: transform 0.15s ease;
}

    .status-item:hover {
        transform: translateX(4px);
        color: var(--theme-text-dark);
    }

.btn-view-records {
    background-color: var(--theme-primary-yellow);
    color: #ffffff;
    font-weight: 600;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 15px;
}

    .btn-view-records:hover {
        background-color: var(--theme-accent-yellow);
        color: #ffffff;
    }


/* ==========================================
   Platform Stats Section
   ========================================== */

/* Card Container */
.stats-card {
    background-color: var(--theme-card-bg, #FFFDF7);
    border: 1px solid var(--theme-card-border, #F1E5C8);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Optional hover effect for interactive feel */
    .stats-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    }

/* Icon Styling */
.stats-icon {
    font-size: 2rem;
    color: var(--theme-primary-yellow, #ECA827);
    margin-bottom: 10px;
    display: inline-block;
}

/* Numeric Counter */
.stats-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--theme-text-dark, #2C2825);
    line-height: 1;
    margin-bottom: 6px;
}

/* Metric Label */
.stats-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--theme-text-muted, #6C665F);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ???????? */
.text-muted {
    color: #8C939D !important;
}

.disclaimer-text {
    color: #A0A5AD;
}
