*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    font-family: "Segoe UI", sans-serif;
    background: #faf7f2;
    color: #3d2b1f;
    line-height: 1.8;
}

/* -------------------- */
/* NAVBAR */
/* -------------------- */

.navbar
{
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;

    background: rgba(255,255,255,0.97);

    backdrop-filter: blur(8px);

    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo
{
    font-size: 1.4rem;
    font-weight: 700;
    color: #5d4037;
}

.navbar ul
{
    display: flex;
    gap: 30px;

    list-style: none;
}

.navbar a
{
    text-decoration: none;
    color: #5d4037;
    font-weight: 600;

    transition: 0.2s;
}

.navbar a:hover
{
    color: #c58b4e;
}

/* -------------------- */
/* HERO */
/* -------------------- */

.hero-header
{
    min-height: 85vh;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?q=80&w=1800");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero
{
    color: white;
    padding: 30px;
}

.hero h1
{
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p
{
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* -------------------- */
/* BUTTONS */
/* -------------------- */

.button
{
    display: inline-block;

    padding: 15px 30px;

    border-radius: 999px;

    background: #c58b4e;

    color: white;
    text-decoration: none;
    font-weight: 600;

    transition: .25s;
}

.button:hover
{
    background: #a66f38;
    transform: translateY(-2px);
}

/* -------------------- */
/* SECTIONS */
/* -------------------- */

.section
{
    padding: 80px 10%;
}

.section h2
{
    text-align: center;

    margin-bottom: 40px;

    color: #5d4037;

    font-size: 2.3rem;
}

.section p
{
    margin-bottom: 15px;
}

/* -------------------- */
/* ABOUT */
/* -------------------- */

.about
{
    max-width: 1000px;
    margin: auto;
    font-size: 1.1rem;
}

.about p
{
    margin-bottom: 20px;
}

.about-with-image
{
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(260px,360px);
    align-items: end;
    gap: 40px;
}

.about-profile
{
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 16px;

    box-shadow:
        0 6px 22px rgba(0,0,0,.12);
}

/* -------------------- */
/* WARNING BANNER */
/* -------------------- */

.warning-banner
{
    background: #b71c1c;
    color: white;

    text-align: center;

    padding: 50px 20px;
}

.warning-banner h2
{
    color: white;
    margin-bottom: 15px;
}

.warning-banner p
{
    font-size: 1.1rem;
}

/* -------------------- */
/* CARDS */
/* -------------------- */

.cards
{
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px,1fr));

    gap: 25px;
}

.card
{
    background: white;

    padding: 30px;

    border-radius: 16px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);

    transition: .25s;
}

.card:hover
{
    transform: translateY(-5px);
}

.card h3
{
    margin-bottom: 15px;
    color: #5d4037;
}

/* -------------------- */
/* DETAILS */
/* -------------------- */

details
{
    background: white;

    border-radius: 15px;

    padding: 20px;

    margin-top: 20px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.08);
}

summary
{
    cursor: pointer;

    font-size: 1.15rem;
    font-weight: bold;

    color: #5d4037;
}

details ul
{
    margin-top: 20px;
    padding-left: 25px;
}

details h3
{
    margin-top: 25px;
    margin-bottom: 15px;
}

/* -------------------- */
/* GALLERY */
/* -------------------- */

.gallery
{
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 25px;
}

.gallery img
{
    width: 100%;
    height: 300px;

    object-fit: cover;

    border-radius: 16px;

    transition: .3s;

    box-shadow:
        0 4px 15px rgba(0,0,0,.08);
}

.gallery img:hover
{
    transform: scale(1.03);
}

/* -------------------- */
/* BLOG */
/* -------------------- */

.news-card
{
    background: white;

    border-radius: 18px;

    overflow: hidden;

    margin-bottom: 50px;

    box-shadow:
        0 4px 15px rgba(0,0,0,.08);
}

.news-card img
{
    width: 100%;
    height: 350px;

    object-fit: cover;
}

.news-card h2
{
    padding: 25px 25px 10px;
    margin: 0;
    text-align: left;
}

.news-card p
{
    padding: 0 25px 25px;
}

/* -------------------- */
/* CONTACT PAGE */
/* -------------------- */

.contact-wrapper
{
    max-width: 1000px;
    margin: auto;
}

.contact-info
{
    text-align: center;
    margin-bottom: 50px;
}

.contact-info p
{
    margin-bottom: 10px;
}

.contact-info a
{
    color: #5d4037;
    text-decoration: none;
}

.contact-info a:hover
{
    color: #c58b4e;
}

form
{
    background: white;

    padding: 40px;

    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);
}

input,
textarea,
select
{
    width: 100%;

    padding: 15px;

    margin-bottom: 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 1rem;
}

textarea
{
    resize: vertical;
}

button
{
    border: none;

    background: #c58b4e;

    color: white;

    padding: 15px 30px;

    border-radius: 999px;

    font-size: 1rem;

    cursor: pointer;

    transition: .25s;
}

button:hover
{
    background: #a66f38;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

footer
{
    background: #3d2b1f;

    color: white;

    text-align: center;

    padding: 30px;
}

/* -------------------- */
/* MOBILE */
/* -------------------- */

@media (max-width: 768px)
{
    .navbar
    {
        flex-direction: column;
        gap: 15px;
    }

    .navbar ul
    {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1
    {
        font-size: 2.4rem;
    }

    .hero p
    {
        font-size: 1.1rem;
    }

    .section
    {
        padding: 60px 6%;
    }

    form
    {
        padding: 25px;
    }

    .about-with-image
    {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-profile
    {
        max-width: 420px;
        margin: auto;
    }
}

/* -------------------- */
/* PAGE HEADER */
/* -------------------- */

.page-header
{
    height: 40vh;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("https://images.unsplash.com/photo-1551024601-bec78aea704b?q=80&w=1600");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.page-header-content
{
    color: white;
}

.page-header-content h1
{
    font-size: 3rem;
    margin-bottom: 15px;
}

/* -------------------- */
/* NEWS CONTENT */
/* -------------------- */

.news-content
{
    padding: 30px;
}

.news-content h2
{
    text-align: left;
    margin-bottom: 20px;
}

/* -------------------- */
/* SEASON GALLERY */
/* -------------------- */

.season-gallery
{
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap: 15px;

    margin-top: 25px;
}

.season-gallery img
{
    width: 100%;
    height: 220px;

    object-fit: cover;

    border-radius: 12px;

    transition: .3s;
}

.season-gallery img:hover
{
    transform: scale(1.03);
}

/* -------------------- */
/* GALLERY PAGE */
/* -------------------- */

.gallery-intro
{
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
}

.gallery-grid
{
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap: 20px;
}

.gallery-grid img
{
    width: 100%;
    aspect-ratio: 1;

    object-fit: cover;

    border-radius: 16px;

    cursor: pointer;

    transition: .3s;

    box-shadow:
        0 4px 15px rgba(0,0,0,.08);
}

.gallery-grid img:hover
{
    transform: scale(1.03);
}
