﻿/* =========================
   RESET
========================= */

/* ============================================
   Empower Link Solutions — Global Stylesheet
   ============================================ */

:root {
    --gold: #d4a02d;
    --gold-dark: #b8860b;
    --navy: #02153a;
    --text: #333333;
    --text-light: #555555;
    --bg: #ffffff;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* =========================
   HEADER
========================= */
header {
    background: var(--navy);
    padding: 20px 40px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 110px;
    width: auto;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 30px;
    font-size: 18px;
}

    nav a:hover {
        color: var(--gold);
    }

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    min-height: 700px;
}

.hero-left {
    background-image: url('../images/home-hero.jpg');
    background-size: 95%;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-left h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-left p {
        font-size: 1.3rem;
        max-width: 600px;
    }

.hero-right {
    flex: 1;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

    .hero-right h2 {
        font-size: 5rem;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .hero-right hr {
        width: 280px;
        border: 2px solid var(--gold);
        margin-bottom: 25px;
    }

    .hero-right h3 {
        color: var(--navy);
        letter-spacing: 4px;
        margin-bottom: 25px;
    }

    .hero-right p {
        font-size: 1.4rem;
        color: var(--text-light);
        margin-bottom: 30px;
    }

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 15px 35px;
    border-radius: var(--radius);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

    .btn:hover {
        background: var(--gold-dark);
        color: white;
    }

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

    .btn-gold:hover {
        background: var(--gold-dark);
        color: white;
    }

/* =========================
   SECTION HELPERS
========================= */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.accent-bar, .accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 1.25rem;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* =========================
   CARDS GRID
========================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 2px 12px var(--shadow);
    transition: var(--transition);
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

.card-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-light);
}

/* =========================
   WORKSHOPS TABLE
========================= */
.workshops-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px var(--shadow);
}

.workshops-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

    .workshops-table thead {
        background: var(--navy);
        color: var(--white);
    }

    .workshops-table th {
        padding: 1rem 1.25rem;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem;
    }

    .workshops-table td {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #eee;
    }

    .workshops-table tbody tr:hover {
        background: #f8f9fa;
    }

    .workshops-table tbody tr:last-child td {
        border-bottom: none;
    }

/* =========================
   CTA BOX
========================= */
.cta-box {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 260px;
}

.cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 45, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.cta-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

/* =========================
   ABOUT (home + page)
========================= */
.about-section, .about-page {
    padding: 80px 40px;
    background: #f8f8f8;
}

.about-page {
    background: white;
}

.about-content, .about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

    .about-text h2 {
        color: var(--navy);
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .about-text p {
        line-height: 1.8;
        margin-bottom: 15px;
        color: var(--text-light);
    }

.about-image {
    flex: 1;
}

    .about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

/* =========================
   SERVICES PREVIEW
========================= */
.services-preview {
    padding: 80px 40px;
    text-align: center;
}

    .services-preview h2 {
        color: var(--navy);
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

    .service-card h3 {
        color: var(--navy);
        margin-bottom: 15px;
    }

    .service-card p {
        line-height: 1.6;
    }

/* =========================
   VALUES
========================= */
.values-section {
    background: #f5f5f5;
    padding: 80px 40px;
    text-align: center;
}

    .values-section h2 {
        color: var(--navy);
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

    .value-card h3 {
        color: var(--gold);
        margin-bottom: 15px;
    }

    .value-card p {
        color: var(--text-light);
        line-height: 1.6;
    }

/* =========================
   WORKSHOP PAGE
========================= */
.workshop-banner {
    background: url('../images/workshops-banner.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay {
    background: rgba(2, 21, 58, 0.75);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

    .banner-overlay h1 {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .banner-overlay p {
        font-size: 1.3rem;
    }

.workshop-intro {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 30px;
    text-align: center;
}

    .workshop-intro h2 {
        font-size: 2.5rem;
        color: var(--navy);
        margin-bottom: 25px;
    }

    .workshop-intro p {
        font-size: 18px;
        line-height: 1.9;
        color: var(--text-light);
    }

.workshop-grid {
    max-width: var(--max-width);
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 30px;
}

.workshop-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

    .workshop-card:hover {
        transform: translateY(-6px);
    }

    .workshop-card h3 {
        color: var(--navy);
        margin-bottom: 18px;
        font-size: 1.4rem;
    }

    .workshop-card p {
        line-height: 1.8;
        color: var(--text-light);
    }

.timetable {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
}

    .timetable h2 {
        text-align: center;
        font-size: 2.5rem;
        color: var(--navy);
        margin-bottom: 35px;
    }

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

th {
    background: var(--navy);
    color: white;
    padding: 18px;
}

td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
    background: #f5f5f5;
}

tr:hover {
    background: #eef4ff;
}

/* =========================
   FOOTER
========================= */
footer, .site-footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 80px;
    font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .banner-overlay h1 {
        font-size: 2rem;
    }

    table {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    nav {
        margin-top: 20px;
    }

        nav a {
            display: block;
            margin: 10px 0;
        }

    .hero {
        flex-direction: column;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 60px 30px;
    }

        .hero-left h1 {
            font-size: 2.5rem;
        }

    .hero-right h2 {
        font-size: 3rem;
    }

    .about-content, .about-wrapper {
        flex-direction: column;
    }

    .service-grid, .values-grid, .cards-grid {
        grid-template-columns: 1fr;
    }

    .about-page, .about-section, .values-section,
    .services-preview {
        padding: 40px 20px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
    }

    .workshops-table th, .workshops-table td {
        padding: 0.85rem 1rem;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    



    /* =========================
   CONTACT PAGE
========================= */
    .contact-section {
        max-width: var(--max-width);
        margin: 60px auto;
        padding: 0 30px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .contact-card {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: var(--transition);
    }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .contact-card h3 {
            color: var(--navy);
            margin-bottom: 15px;
        }

        .contact-card p {
            margin-bottom: 10px;
            color: var(--text-light);
        }

    .btn-whatsapp {
        display: inline-block;
        margin-top: 15px;
        background: #25D366;
        color: white;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: bold;
        transition: var(--transition);
    }

        .btn-whatsapp:hover {
            background: #1ebe57;
            color: white;
        }

    .map-section {
        max-width: 1100px;
        margin: 80px auto;
        padding: 0 30px;
        text-align: center;
    }

        .map-section h2 {
            color: var(--navy);
            font-size: 2.3rem;
            margin-bottom: 10px;
        }

    .map-wrapper {
        margin-top: 25px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }

        /* =========================
   RECRUITMENT FORM
========================= */
        .recruitment-section {
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 30px;
        }

        .recruitment-form {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--navy);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }

            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: var(--gold);
                box-shadow: 0 0 0 3px rgba(212,160,45,0.15);
            }

        .form-group textarea {
            resize: vertical;
        }

        .recruitment-form .btn {
            width: 100%;
            padding: 16px;
            font-size: 1.05rem;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .recruitment-form {
                padding: 25px;
            }
        }

        .site-footer {
            background: var(--navy, #02153a);
            color: white;
            padding: 25px 40px;
            text-align: center;
        }

        .footer-content {
            max-width: var(--max-width, 1200px);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-legal {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }

            .footer-legal a {
                color: var(--gold, #d4a02d);
                margin: 0 6px;
            }

                .footer-legal a:hover {
                    text-decoration: underline;
                }

        .footer-whatsapp {
            display: inline-block;
            background: #25d366;
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.95rem;
            transition: 0.3s ease;
        }

            .footer-whatsapp:hover {
                background: #1ebe57;
            }

        @media (max-width: 768px) {
            .site-footer {
                padding: 20px;
            }
        }


    }

}
   

