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

body {
    font-family: 'Georgia', serif;
    background: #8B4513;
    padding: 0;
    min-height: 100vh;
    width: 100%;
}

.sticky-header {
    position: sticky;
    top: 0;
    background: #8B4513;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    width: 100%;
}

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

.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #D4A574;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #8B4513;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.nav-menu.active {
    display: flex;
    max-height: 500px;
    padding: 10px 0;
}

.nav-menu li {
    width: 100%;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    color: #D4A574;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, padding-left 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.nav-menu a:hover {
    background: rgba(212, 165, 116, 0.1);
    padding-left: 25px;
}

.menu-container {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #8B4513;
}

.menu-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: #412817;
    padding: 10px;
}


/* Tablet - 768px and up */

@media (min-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }
    .logo-image {
        max-height: 70px;
        max-width: 250px;
    }
    .burger-menu {
        width: 35px;
        height: 35px;
    }
    .nav-menu a {
        font-size: 18px;
        padding: 15px 25px;
    }
    .menu-container {
        padding: 30px;
    }
    .menu-image {
        margin: 30px;
    }
}


/* Laptop - 1024px and up */

@media (min-width: 1024px) {
    .header-content {
        padding: 15px 30px;
    }
    .logo-image {
        max-height: 80px;
        max-width: 300px;
    }
    .nav-menu {
        display: flex;
        flex-direction: row;
        max-height: none;
        padding: 0;
        justify-content: center;
        background: transparent;
    }
    .nav-menu li {
        width: auto;
    }
    .nav-menu a {
        padding: 15px 20px;
        border-bottom: none;
        font-size: 16px;
    }
    .burger-menu {
        display: none;
    }
    .menu-container {
        padding: 40px;
    }
    .menu-image {
        margin: 40px;
        max-width: 90%;
    }
}

.footer {
    background: #8B4513;
    padding: 20px;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: #D4A574;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #F8F4E9;
    transform: scale(1.2);
}

.social-link svg {
    width: 28px;
    height: 28px;
}


/* Tablet - 768px and up */

@media (min-width: 768px) {
    .footer {
        padding: 25px;
    }
    .social-links {
        gap: 30px;
    }
    .social-link svg {
        width: 32px;
        height: 32px;
    }
}


/* Laptop - 1024px and up */

@media (min-width: 1024px) {
    .footer {
        padding: 30px;
    }
    .social-link svg {
        width: 36px;
        height: 36px;
    }
}