@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html {
    scroll-behavior: smooth;
}
:root {
    --primary-color: #2C3E50;
    --secondary-color: #C0A16B;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    white-space: nowrap;
}

.navbar__links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.navbar__links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar__links a:hover {
    color: var(--secondary-color);
}

.navbar__links-button {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.3s ease !important;
}

.navbar__links-button:hover {
    transform: scale(1.05);
    background-color: #a88d5a;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}


@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        z-index: 1001;
        margin-left: 40%;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background-color: var(--primary-color);
        display: block;
    }

    .navbar__links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 80%;
        height: 100vh;
        padding-top: 100px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .navbar__links.active {
        right: 0;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}