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

:root {
    --primary-orange: #FF9E00;
    --dark-orange: #E67E22;
    --light-bg: #fafafa;
    --dark-text: #2c3e50;
    --light-text: #555;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.8;
    }
}

.logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.brand-name {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;

    a {
        text-decoration: none;
        color: var(--dark-text);
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
        padding-bottom: 0.25rem;

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-orange), var(--dark-orange));
            transition: width 0.3s ease;
        }

        &:hover {
            color: var(--primary-orange);

            &::after {
                width: 100%;
            }
        }
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-orange) 0%, #c86a1b 100%);
    color: white;
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;

    a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding-bottom: 0.25rem;

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-orange), var(--dark-orange));
            transition: width 0.3s ease;
        }

        &:hover::after {
            width: 100%;
        }
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.95rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
