:root {
    --color-yellow: #DCBC06;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-light: #cccccc;
    --color-gray-medium: #888888;
    --color-gray-dark: #333333;
    --color-gray-border: #e0e0e0;

    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;

    /* Layout */
    --max-width: 1200px;
    --max-width-wide: 1400px;

    /* Transitions */
    --transition-all: all 0.3s ease;
}

/*RESET & BASE STYLES===================================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
}

/*HEADER & NAVIGATION==================================================================*/
.header {
    background-color: transparent;
    padding: 1.5rem 2rem;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    letter-spacing: 0.5px;
    color: var(--color-white);
    text-decoration: none;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-all);
    display: inline-block;
}

.nav-link:hover {
    transform: scale(1.05);
}

/* Hamburger menu icon - Mobile View Only */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: var(--transition-all);
}

/*HERO SECTION======================================================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 5rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-yellow);
    text-align: center;
    line-height: 1.1;
    letter-spacing: .5px;
    margin-bottom: 2rem;
}

/*RECENT BLOG SECTION==================================================================*/
.recent-blog {
    background-color: var(--color-white);
    padding: 4rem 2rem;
}

.recent-blog-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    color: var(--color-black);
}

.blog-preview {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-border);
    overflow: hidden;
}

.blog-preview-image {
    width: 50%;
    height: 400px;
    object-fit: cover;
}

.blog-preview-content {
    flex: 1;
    padding: 2rem;
}

.blog-preview-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-extra-bold);
    margin-bottom: 1rem;
    color: var(--color-black);
    line-height: 1.3;
}

.blog-preview-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.blog-preview-link {
    display: inline-block;
    color: var(--color-white);
    background-color: var(--color-black);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-all);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-black);
}

.blog-preview-link:hover {
    transform: scale(1.05);
}

/* =============================================================================
   FOOTER STYLES - Replace your existing footer CSS with this
   ============================================================================= */

.footer {
    background-color: var(--color-black);
    color: var(--color-gray-medium);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-dark);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Left side - Brand */
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
}

.footer-tagline {
    margin: 0;
    font-size: 0.95rem;
}

/* Right side - Connect */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
    text-align: right;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-gray-medium);
    transition: var(--transition-all);
}

.social-icon:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Bottom copyright */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-heading {
        text-align: left;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}
/*RESPONSIVE DESIGN====================================================================*/
@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .nav-toggle {
        display: block;
    }

    /* Hide nav list by default on mobile */
    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        z-index: 150;
    }

    /* Show nav when active */
    .nav-list.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        text-align: left;
    }

    /* Header adjustments */
    .header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    /* Blog preview adjustments */
    .blog-preview {
        flex-direction: column;
    }

    .blog-preview-image {
        width: 100%;
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section:last-child {
        text-align: left;
    }

}