@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: linear-gradient(to bottom, #ffffff, #ffebd6);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: #FF9933;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #FF9933;
    transition: color 0.3s;
}

header.scrolled .logo a {
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #FF9933;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

header.scrolled .nav-links a {
    color: #ffffff;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #FF9933;
    cursor: pointer;
}

header.scrolled .hamburger {
    color: #ffffff;
}

#content-area {
    flex: 1;
    margin-top: 100px;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

footer {
    width: 100%;
    background-color: transparent;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    color: #FF9933;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    font-size: 15px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        padding: 20px 0;
        text-align: center;
    }

    header.scrolled .nav-links {
        background: #FF9933;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}