* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --background: #f8f5ef;
    --text: #332f2a;
    --muted: #756f67;
    --accent-light: #e8ded0;

    --radius-large: 24px;
    --radius-medium: 18px;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--background);
}


/* =========================
   HEADER
========================= */

.header {
    height: 80px;
    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--background);
}


.logo {
    color: #171717;
    text-decoration: none;

    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}


.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}


.navigation a {
    color: #171717;
    text-decoration: none;
    font-size: 14px;
}


.navigation a:hover {
    opacity: 0.5;
}


/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 5px;
}


.language-button {
    padding: 6px 8px;

    border: 1px solid transparent;
    border-radius: 7px;

    background: transparent;
    color: var(--text);

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.language-button:hover {
    background: var(--accent-light);
}


.language-button.active {
    background: var(--text);
    color: white;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 700px;

    display: grid;
    grid-template-columns: 50% 35%;

    background: var(--background);

    overflow: hidden;
}


.hero-content {
    padding: 80px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--background);
}


.hero::after {
    content: "";

    display: block;

    height: 500px;

    align-self: center;

    background-image:
        linear-gradient(
            rgba(45, 38, 32, 0.12),
            rgba(45, 38, 32, 0.12)
        ),
        url("images/photo 2.jpg");

    background-size: cover;
    background-position: center;

    border-radius: var(--radius-large);
}


.hero .small-title {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
}


.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 6vw, 9px);

    line-height: 0.95;
    font-weight: 400;

    margin-bottom: 35px;
}


.hero-description {
    max-width: 500px;

    font-size: 18px;
    line-height: 1.6;

    margin-bottom: 40px;

    color: var(--muted);
}


/* =========================
   BUTTONS
========================= */

.button,
.instagram-button {
    display: inline-block;
    width: fit-content;

    text-decoration: none;

    cursor: pointer;

    transition: opacity 0.3s ease;
}


.button {
    padding: 16px 28px;

    background: var(--text);
    color: white;

    font-size: 14px;

    border-radius: 10px;
}


.button:hover,
.instagram-button:hover {
    opacity: 0.8;
}


.instagram-button {
    padding: 16px 28px;
    margin-top: 10px;

    background: #ffffff;
    color: #222222;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;

    border: 1px solid #ffffff;
    border-radius: 10px;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 120px 8%;
}


.section h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 6vw, 80px);

    font-weight: 400;

    margin-bottom: 60px;
}


/* =========================
   PORTFOLIO
========================= */

.portfolio-section {
    overflow: hidden;
}


.portfolio-section h2 {
    margin-bottom: 50px;
}


.albums {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}


.album-card {
    width: 100%;

    cursor: pointer;

    overflow: hidden;
}


.album-cover {
    width: 100%;
    height: 480px;

    overflow: hidden;

    position: relative;

    border-radius: var(--radius-medium);
}


.album-cover img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


.album-card:hover .album-cover img {
    transform: scale(1.03);
}


.album-card-info {
    padding-top: 20px;
}


.album-card-info h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.2;
}


/* =========================
   PRICES
========================= */

.price-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.price-card {
    padding: 40px;

    background: white;

    min-height: 250px;

    border-radius: var(--radius-medium);
}


.price-card h3 {
    font-size: 25px;

    margin-bottom: 20px;

    font-weight: 400;
}


.price-card p {
    margin-bottom: 40px;

    color: #666;

    white-space: pre-line;
    line-height: 1.6;
}


.price-card strong {
    font-size: 30px;
}


/* =========================
   ABOUT
========================= */

.about {
    max-width: 1000px;
}


.about p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 16px;
}


.about .small-title {
    margin-top: 45px;
    margin-bottom: 24px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}


.about-highlight {
    max-width: 650px;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================
   BOOKING
========================= */

.booking {
    background: #222;
    color: white;
}


.booking > p:not(.small-title) {
    max-width: 600px;

    line-height: 1.6;

    margin-bottom: 40px;
}


/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(30, 27, 24, 0.94);
}


.lightbox.active {
    display: flex;
}


.lightbox-image {
    display: block;

    max-width: 85vw;
    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;
}


.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    z-index: 100000;

    border: none;

    background: transparent;

    color: white;

    cursor: pointer;
}


.lightbox-close {
    top: 20px;
    right: 30px;

    font-size: 50px;
}


.lightbox-prev {
    left: 25px;
    top: 50%;

    font-size: 60px;
}


.lightbox-next {
    right: 25px;
    top: 50%;

    font-size: 60px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .header {
        height: auto;

        padding: 25px;

        flex-direction: column;

        gap: 20px;
    }


    .navigation {
        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;
    }


    .language-switcher {
        margin-left: 0;
    }


    /* Hero */

    .hero {
        min-height: auto;

        display: flex;

        flex-direction: column;
    }


    .hero::after {
        order: 1;

        width: 100%;
        height: 500px;

        min-height: 500px;

        border-radius: var(--radius-large);
    }


    .hero-content {
        order: 2;

        padding: 70px 25px 80px;
    }


    .hero h1 {
        font-size: clamp(48px, 14vw, 70px);
    }


    .hero-description {
        font-size: 17px;
    }


    /* Sections */

    .section {
        padding: 80px 25px;
    }


    /* Albums */

    .albums {
        grid-template-columns: 1fr;
    }


    .album-cover {
        height: 450px;

        border-radius: var(--radius-medium);
    }


    /* Prices */

    .price-grid {
        grid-template-columns: 1fr;
    }


    .price-card {
        border-radius: var(--radius-medium);
    }


    /* Lightbox */

    .lightbox-close {
        top: 15px;
        right: 20px;

        font-size: 45px;
    }


    .lightbox-prev {
        left: 15px;

        font-size: 50px;
    }


    .lightbox-next {
        right: 15px;

        font-size: 50px;
    }


    .lightbox-image {
        max-width: 90vw;
        max-height: 85vh;

        border-radius: 6px;
    }

}