/* ============================================================
   AMZGS YEAR AWARD - التصميم الموحد
   ============================================================ */

/* ===== الأساسيات ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-white: #ffffff;
    --bg-light: #f0f2f5;
    --bg-card: #ffffff;
    --text-dark: #1a2332;
    --text-muted: #6c757d;
    --text-light: #495057;
    --accent-primary: #00b894;
    --accent-gold: #f39c12;
    --accent-gold-light: #fdebd0;
    --gradient-main: linear-gradient(135deg, #00b894 0%, #00a3d6 100%);
    --gradient-gold: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    --max-width: 1200px;
    --shadow-card: 0 5px 30px rgba(0, 0, 0, 0.06);
    --border-radius: 16px;
    --border-color: #e9ecef;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    width: min(var(--max-width), 92%);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

/* ===== Helper Classes ===== */
.gold {
    color: var(--accent-gold);
}
.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}
.nav {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 52px;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.logo .gold {
    color: var(--accent-gold);
}
.logo small {
    font-size: 7px;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 1px;
    font-weight: 400;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: auto;
    list-style: none;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
    background: rgba(0, 184, 148, 0.06);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ===== Search Box ===== */
.search-box {
    display: flex;
    gap: 6px;
    align-items: center;
}
.search-box input {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: var(--bg-light);
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    width: 180px;
    transition: all 0.3s ease;
    color: var(--text-dark);
}
.search-box input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.06);
    width: 220px;
}
.search-box button {
    padding: 8px 16px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-box button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.2);
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.hero-content .badge {
    display: inline-block;
    background: rgba(243, 156, 18, 0.12);
    color: var(--accent-gold);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
    border: 1px solid rgba(243, 156, 18, 0.12);
}
.hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text-dark);
}
.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.15);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 184, 148, 0.25);
}
.btn-secondary {
    display: inline-block;
    padding: 14px 34px;
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 184, 148, 0.04);
}
.hero-stats {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}
.hero-stats .stat {
    text-align: center;
}
.hero-stats .stat .number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-primary);
    font-family: 'Montserrat', sans-serif;
}
.hero-stats .stat .label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== SECTIONS ===== */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== EVENTS GRID ===== */
.events-section {
    padding: 60px 0;
    background: var(--bg-white);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}
.event-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}
.event-cover {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--bg-light);
}
.event-cover .event-year {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gradient-gold);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
}
.event-info {
    padding: 20px;
}
.event-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.event-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 2px 0;
}
.btn-view {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-view:hover {
    color: var(--accent-gold);
}

/* ===== EVENT DETAILS ===== */
.event-details {
    padding: 110px 0 40px;
}
.event-header {
    text-align: center;
    margin-bottom: 40px;
}
.back-link {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}
.back-link:hover {
    color: var(--accent-primary);
}
.event-header h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
}
.event-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 16px 0;
    color: var(--text-muted);
    font-size: 15px;
}
.event-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-share {
    padding: 10px 28px;
    background: #1877f2;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}
.btn-share:hover {
    transform: scale(1.03);
}
.btn-nominate {
    padding: 10px 28px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-nominate:hover {
    transform: scale(1.03);
}

/* ===== GROUP PHOTOS ===== */
.group-photos {
    padding: 30px 0 50px;
    background: var(--bg-light);
}
.group-photos h2 {
    text-align: center;
    margin-bottom: 24px;
}
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.group-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.group-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-card);
}
.group-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== HONOREES ===== */
.honorees-section {
    padding: 50px 0 70px;
    background: var(--bg-white);
}
.honorees-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.honorees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.honoree-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}
.honoree-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-primary);
}
.honoree-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}
.honoree-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.honoree-info {
    padding: 18px;
}
.honoree-info h3 {
    font-size: 17px;
    margin-bottom: 4px;
}
.honoree-title {
    display: inline-block;
    background: rgba(243, 156, 18, 0.1);
    color: var(--accent-gold);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.honoree-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin: 8px 0;
}
.no-data {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

/* ===== HONOREE PROFILE ===== */
.honoree-details {
    padding: 110px 0 40px;
}
.profile-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-card);
}
.profile-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-light);
    aspect-ratio: 1/1;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info h1 {
    font-size: 28px;
    margin-bottom: 6px;
}
.profile-title {
    font-size: 20px;
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 10px;
}
.profile-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}
.profile-description {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 12px;
    margin: 16px 0;
}
.profile-description p {
    color: var(--text-dark);
    margin-top: 4px;
}
.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-download {
    padding: 10px 28px;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}
.btn-download:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 184, 148, 0.04);
}

/* ===== RELATED HONOREES ===== */
.related-honorees {
    padding: 40px 0 70px;
    background: var(--bg-light);
}
.related-honorees h3 {
    text-align: center;
    margin-bottom: 24px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}
.related-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-primary);
}
.related-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}
.related-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
}
.related-title {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 60px 0;
    background: var(--bg-light);
}
.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-content .section-tag {
    color: var(--accent-primary);
}
.about-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}
.about-features .feature .icon {
    font-size: 20px;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.trophy-icon {
    font-size: 160px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== NOMINATION FORM ===== */
.nomination-section {
    padding: 110px 0 60px;
}
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-header .badge {
    display: inline-block;
    background: rgba(0, 184, 148, 0.08);
    color: var(--accent-primary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}
.form-header h1 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
}
.form-header p {
    color: var(--text-muted);
    margin-top: 8px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.06);
}
.form-group small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-top: 10px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 184, 148, 0.25);
}
.form-message {
    margin-top: 16px;
    text-align: center;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 50px 0 25px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    max-width: 280px;
    margin-top: 6px;
}
.footer-col h5 {
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    padding: 3px 0;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: var(--accent-primary);
}
.copyright {
    text-align: center;
    padding-top: 25px;
    color: var(--text-muted);
    font-size: 11px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 28px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-features {
        justify-content: center;
    }
    .profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .profile-meta {
        justify-content: center;
    }
    .profile-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 10px 16px;
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
    .search-box {
        width: 100%;
        margin-top: 8px;
    }
    .search-box input {
        width: 100%;
        flex: 1;
    }
    .search-box input:focus {
        width: 100%;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-wrapper {
        padding: 24px;
    }
    .profile-card {
        padding: 20px;
    }
    .event-meta {
        gap: 12px;
        font-size: 13px;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .honorees-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-stats .stat .number {
        font-size: 24px;
    }
    .event-cover {
        height: 140px;
    }
    .group-grid {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .profile-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-share,
    .btn-download {
        width: 100%;
        text-align: center;
    }
    .event-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-share,
    .btn-nominate {
        width: 100%;
        text-align: center;
    }
}