:root {
    --brown: #6b4f3f;
    --dark: #3e3028;
    --cream: #f6f1eb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
}

/* HEADER */
header {
    background: linear-gradient(rgba(62,48,40,.6), rgba(62,48,40,.6)),
                url("images/header.jpg") center/cover no-repeat;
    color: white;
    padding: 110px 20px;
    text-align: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 5vw, 3.3rem);
    margin-bottom: 10px;
}

header p {
    max-width: 600px;
    margin: auto;
    font-size: 1.15rem;
}

/* SECTIONS */
section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* GALLERY */
.gallery-wrapper {
    overflow-x: auto;
    padding-bottom: 15px;
}

.gallery {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.gallery img {
    height: 320px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    cursor: pointer;
    scroll-snap-align: center;
    transition: transform .3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.hint {
    text-align: center;
    font-size: .9rem;
    opacity: .7;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* PRICING */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    text-align: center;
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
}

.price {
    font-size: 1.4rem;
    color: var(--brown);
    font-weight: 500;
}

/* FORM */
form {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    max-width: 600px;
    margin: auto;
}

label {
    display: block;
    margin-top: 20px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 6px;
    font-family: inherit;
}

button {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background: var(--brown);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #563e31;
}

/* INSTAGRAM */
.instagram {
    text-align: center;
}

.instagram a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    border-radius: 30px;
    background: var(--dark);
    color: white;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #ddd;
    text-align: center;
    padding: 25px;
    font-size: .9rem;
}

/* MOBILE */
@media (max-width: 600px) {
    .gallery img {
        height: 240px;
    }
}

.about-image {
    max-width: 400px;
    width: auto;
    height: auto;
}


.gallery-image {
    max-width: 400px;
    width: auto;
    height: auto;
}
