html, body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
}

.hero-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    margin: 0;
    text-align: center;
}

div.hero-top {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 0;
    text-align: center;
}

.hero-top a {
    color: black;
    text-decoration: none;
}

.hero-center h1, .hero-top h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 0;
    margin-top: 0;
}

.hero-center h2, .hero-top h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 4vw, 2rem);
    letter-spacing: 0.2em;
    margin-bottom: 0;
    margin-top: 1rem;
}

.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    font-size: clamp(0.8rem, 4vw, 2rem);
    z-index: 100;
}

.bottom-menu a {
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease;
}

.bottom-menu a:hover {
    opacity: 0.5;
}

@media (max-width: 480px) {
    .bottom-menu {
        gap: 3rem;
    }
}

.gallery-container {
    padding: 2vh 5vw 8vh;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(80vh - 250px);
    padding: 0 10vw;
    text-align: center;
}

.contact-intro {
    max-width: 700px;
    margin-bottom: 4rem;
}

.contact-intro p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    color: #444;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item .label {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: #aaa;
    margin-bottom: 0.8rem;
}

.link-item {
    font-size: 1.3rem;
    text-decoration: none;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.link-item:hover {
    opacity: 0.4;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.hero-top a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding-top: 2rem;
        padding-bottom: 100px;
    }

    .link-item {
        font-size: 1.1rem;
    }
}
