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

body {
    font-family: "Montserrat", sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: #c9a961;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    opacity: 0.9;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero p {
    font-size: 18px;
    color: #c9a961;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0a0a;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 4px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #c9a961;
}

.about-text p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.contact {
    text-align: center;
    padding: 150px 50px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.contact h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 16px;
    color: #ccc;
    letter-spacing: 1px;
}

.contact-item a {
    color: #c9a961;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(15px);
        opacity: 0.5;
    }
}

/* TABLETTE — max 1024px */
@media (max-width: 1024px) {

    .hero h1 {
        font-size: 56px;
    }

    .section {
        padding: 80px 30px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 380px;
    }
}


/* MOBILE — max 768px */
@media (max-width: 768px) {
    header {
        padding: 40px 20px 25px 20px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        height: 150px;
    }

    body {
        padding: 50px 5px;
    }

    nav ul {
        gap: 12px;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        padding: 0 20px;
        height: 95vh;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .gallery {
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .about-image {
        height: 280px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact {
        padding: 80px 20px;
    }

    .contact h2 {
        font-size: 32px;
    }

    .contact-item {
        font-size: 14px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}