/* CONTACT / RENDEZVOUS PAGE */

/* 0. HORIZONTAL GALLERY WIDGET (New Section) */
.h-gallery-container {
    width: 100%;
    height: 100vh;
    /* FULL SCREEN REQUEST */
    background: #fff;
    overflow: hidden;
    margin-top: 0;
}

.scroll-animations-example {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scroll-animations-example::-webkit-scrollbar {
    display: none;
}

.scroll-animations-example>.scrollsection {
    padding: 0 5vw;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.scroll-animations-example>.scrollsection>.item {
    display: inline-block;
    position: relative;
    margin: 0 1vw;
    /* Reduced Gap similar to about us */
    flex-shrink: 0;
    overflow: hidden;
}

/* Scaled Sizes for 100vh Container */
.scroll-animations-example>.scrollsection>.item.-big {
    height: 75vh;
    width: 50vh;
}

.scroll-animations-example>.scrollsection>.item.-big.-horizontal {
    height: 50vh;
    width: 75vh;
}

.scroll-animations-example>.scrollsection>.item.-normal {
    height: 55vh;
    width: 40vh;
}

.scroll-animations-example>.scrollsection>.item.-normal.-horizontal {
    height: 40vh;
    width: 55vh;
}

.scroll-animations-example>.scrollsection>.item.-small {
    height: 35vh;
    width: 25vh;
}

.scroll-animations-example>.scrollsection>.item.-small.-horizontal {
    height: 25vh;
    width: 35vh;
}

.scroll-animations-example>.scrollsection>.item>.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(100%);
    /* GRAYSCALE REQUEST */
    opacity: 0.6;
}

.scroll-animations-example>.scrollsection>.item:hover>.image {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

/* Text Overlay */
.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    text-align: center;
    white-space: normal;
}


/* 1. MEDIA SENTENCE HERO (Existing) */
.contact-hero {
    position: relative;
    padding: 100px 0 100px;
    /* Reduced top padding as it comes after gallery */
    background-color: var(--c0);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mediaSentence__sentence {
    font-family: 'Cormorant Garamond', serif;
    /* BACK TO ORIGINAL */
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--c11);
    text-align: center;
    font-weight: 300;
}

.mediaSentence__sentence .script-word {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.1em;
    /* Slight bump for script readability */
    font-weight: 400;
}

.mediaSentence__sentence p {
    margin: 0;
}

.mediaSentence__sentence .in {
    display: inline-block;
    vertical-align: middle;
}

/* Media Wrapper */
.mediaSentence__sentence .m.in {
    margin: 0 0.2em;
    /* Spacing around image */
}

.mediaSentence__sentence .window {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    height: 1.1em;
    width: 1.6em;
}

.mediaSentence__sentence .img-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

.mediaSentence__sentence .media.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    /* Add Grayscale */
    transition: filter 0.5s ease;
}

.mediaSentence__sentence .media.img:hover {
    filter: grayscale(0%);
}


/* 2. CONTACT INFO SECTION */
.contact-info-section {
    background-color: #fcfcfc;
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    text-align: center;
    padding: 40px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.contact-card:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.contact-city {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--c11);
    text-transform: uppercase;
}

.contact-address {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-btn {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c11);
    text-decoration: none;
    border: 1px solid var(--c11);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

/* Hover Correction: Solid Black Background, White Text */
.contact-btn:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff !important;
}

.contact-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mediaSentence__sentence {
        font-size: 2rem;
    }

    .h-gallery-container {
        height: 40vh;
        /* Adjust for mobile */
    }
}