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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
}

/* ================
    Landing Page 
===================*/

.landing-container {
    min-height: 100vh;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.landing-container h1 {
    font-size: clamp(3rem, 10vw, 10rem);
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-bottom: 0px;
    line-height: 1;
}

.landing-container h3 {
    margin-bottom: 20px;
}

.landing-image {
    position: relative;
    width: 80%;
    max-width: 1600px;
    height: min(725px, 45vw);
    min-height: 350px;
    padding: 10px;
    overflow: hidden;
    text-align: center;
}

.carousel-slide {
    position: absolute;
    inset: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}

/* Carousel arrows */

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    font-size: 22px;
    cursor: pointer;

    transform: translateY(-50%);
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.carousel-arrow:hover {
    background: white;
    color: black;
}

.carousel-arrow-left {
    left: 25px;
}

.carousel-arrow-right {
    right: 25px;
}

/* Carousel dots */

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 5;

    display: flex;
    gap: 10px;

    transform: translateX(-50%);
}

.carousel-dot {
    width: 12px;
    height: 12px;

    padding: 0;

    border: 2px solid white;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);

    cursor: pointer;
}

.carousel-dot.active {
    background: white;
}

.gallery-button {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 20px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.gallery-button:hover {
    background: #ddd;
    transform: translateY(-2Ppx);
}

.gallery-button:focus-visible {
    outline: 3px solid white;
    outline-offset: 4px;
}

.contact-info {
    margin-top: 30px;
    line-height: 1.8;
    font-size: 20px;
}

/* =================
    Gallery Page 
=================== */

.gallery-title {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 30px, 20px;
    font-weight: bold;
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    margin-top: 20px;
}

.gallery-title:hover {
    color: #ccc;
}

.gallery-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.item {
    min-width: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    text-align: center;
}

.item img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.item h3 {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.item p {
    margin-top: 10px;
    color: #ccc;
}

.return-home {
    display: flex;
    justify-content: center;
    margin: 40px 0 60px;
}

/* =========================
   Tablet
========================= */

@media (max-width: 900px) {
    .landing-container {
        justify-content: flex-start;
        padding-top: 60px;
    }

    .landing-container h1 {
        margin-bottom: 20px;
    }

    .landing-image {
    width: 90%;
    height: min(600px, 60vw);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .item img {
        height: 400px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 600px) {
    .landing-container {
        min-height: 100svh;
        padding: 40px 15px;
        gap: 15px;
    }

    .landing-container h1 {
        font-size: clamp(2.5rem, 15vw, 4rem);
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .landing-image {
    width: 100%;
    height: 65vw;
    min-height: 240px;
    max-height: 400px;
    padding: 0;
}

.carousel-slide {
    inset: 0;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

.carousel-dots {
    bottom: 12px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
}

    .gallery-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
    }

    .contact-info {
        margin-top: 15px;
        font-size: 16px;
    }

    .gallery-title {
        padding: 25px 15px;
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .item {
        padding: 10px;
    }

        .item img {
        height: auto;
        max-height: 550px;
        object-fit: contain;
    }

    .item h3 {
        font-size: 1.2rem;
    }
}
