* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #faf8f3;
    color: #292522;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.7;
}

header {
    border-bottom: 1px solid #ddd5c8;
}

nav {
    max-width: 1100px;
    margin: auto;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #4d3928;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #333;
}


main {
    max-width: 1100px;
    margin: auto;
    padding: 0 30px;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 70px 0;
}


.hero-text {
    max-width: 520px;
}


.hero h1 {
    font-size: 3.8rem;
    font-weight: normal;
    margin: 0 0 20px;
    color: #3c2b1e;
}


.hero h2 {
    font-size: 1.4rem;
    font-weight: normal;
    color: #6b6258;
}


.hero-text p {
    font-size: 1.1rem;
}


.hero-cover img {
    width: 280px;
    height: auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}



section {
    max-width: 800px;
    margin: 80px auto;
}


section h2 {
    font-size: 2rem;
    font-weight: normal;
    color: #5a4028;
}


section p {
    font-size: 1.1rem;
}



footer {
    border-top: 1px solid #ddd5c8;
    text-align: center;
    padding: 30px;
    color: #777;
}



@media(max-width:800px){

.hero {
    flex-direction: column;
    text-align:center;
}

.menu {
    display:none;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ccc;
    padding: 25px;
    box-sizing: border-box;
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-banner h3 {
    margin-top: 0;
}

#cookie-banner p {
    max-width: 1100px;
}

#cookie-banner button {
    padding: 10px 25px;
    margin-top: 10px;
    cursor: pointer;
}
