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

/* GLOBAL */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    color: #111;
    background: #E2DCCC;
    line-height: 1.7;
}


p {
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    color: #111;
    font-size: 14px;
}
/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* NAVIGATION */
.main-nav {
    position: sticky;
    top: 0;
    background: #E2DCCC;
    z-index: 10;
    border-bottom: 1px solid #E2DCCC;
}

.main-nav ul {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #111;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* SECTIONS */
.content-section {
    padding: 90px 20px;
    text-align: center;
}

.alt-bg {
    background: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: auto;
}

h2 {
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 720px;
    margin-bottom: 50px;
    margin: auto;
}

/* APARTMENTS GRID */
.apartment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.apartment-card {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.apartment-card:hover {
    transform: translateY(-6px);
}

.apartment-card h3 {
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    font-size: 1.4rem;
    padding: 18px;
}

.apartment-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .apartment-grid {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        gap: 20px;
    }
}


/* NEIGHBOURHOOD */
.neighbourhood-section {
    padding: 90px 0 120px;
    background: #e2dccc;
    overflow: hidden;
}

.neighbourhood-slider-wrapper {
    margin-top: 60px;
}

.neighbourhood-slider {
    width: 120%;
    margin-left: -10%;
}

.neighbourhood-slide {
    padding: 0 20px;
    text-align: left;
}

.neighbourhood-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.neighbourhood-slide h3 {
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    font-size: 1.3rem;
    margin-top: 16px;
}

/* Slick Arrows ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ understated luxury */
.slick-arrow {
    position: absolute;
    top: 45%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.slick-arrow:hover {
    transform: scale(1.08);
}

.slick-prev {
    left: 60px;
}

.slick-next {
    right: 60px;
}

.slick-prev:before,
.slick-next:before {
    color: #111;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .neighbourhood-slider {
        width: 140%;
        margin-left: -20%;
    }

    .neighbourhood-slide img {
        height: 320px;
    }
}

/* CONTACT */
.contact-section {
    text-align: center;
}

.contact-title {
    margin-bottom: 50px;
}

.contact-form {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-family: 'Libre Baskerville', Baskerville, 'Times New Roman', serif;
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #111;
}

.form-notice {
    text-align: left;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.form-notice.small {
    margin-top: -5px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.85rem;
}

.form-checkbox input {
    margin-top: 4px;
}

.submit-btn {
    margin-top: 20px;
    padding: 16px;
    background: #bb5115;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #333;
}

/* FOOTER */
.site-footer {
    background: #bb5115;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: auto;
    color: red;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 25px;
}

.site-footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #ffffff;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-form {
        width: 100%;
    }
}

.form-success {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 18px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #111;
}

.footer-socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

/* HERO SCROLL INDICATOR */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-scroll a {
    color: #fff;
    font-size: 1.4rem;
    display: inline-block;
    animation: bounce 2s infinite;
    opacity: 0.85;
}

.hero-scroll a:hover {
    opacity: 1;
}

/* Subtle luxury bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    text-align: left;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.info-box p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}






/* INFO PAGE NAV OVERRIDE */
.page-id-34 .main-nav {
    background: #E2DCCC;
}

.page-id-34 .main-nav .nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-id-34 .nav-logo img {
    height: 80px;        /* fixed height */
    width: auto;         /* keep proportions */
    max-width: none;     /* prevent accidental shrinking */
    display: block;
}

.page-id-34 .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.page-id-34 .nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.page-id-34 .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #111;
    transition: width 0.3s ease;
}

.page-id-34 .nav-links a:hover::after {
    width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
    .page-id-34 .nav-links {
        gap: 22px;
    }
}






/* INFO IMAGE GRID */
.info-grid--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    margin: auto;
    width: 70%;
    padding-top: 50px;
}

.info-card {
    position: relative;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s ease;
}


.info-card:hover {
    transform: translateY(-6px);
}

.info-card-overlay {
    position: absolute;
    bottom: 60px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.info-card-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
}

/* MODAL */
.info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.info-modal.active {
    display: flex;
}


/* Mobile */
@media (max-width: 900px) {
    .info-grid--two {
        grid-template-columns: 1fr;
    }

    .info-card {
        height: 320px;
    }
}



.info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.info-modal.active {
    display: flex;
}





/* INFO MODAL */
.info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.info-modal.active {
    display: flex;
}

.info-modal-content {
    background: #fff;
    width: 1200px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    z-index: 10;
}

.info-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

/* LEFT */
.info-modal-form {
    padding: 50px;
}

/* RIGHT */
.info-modal-image {
    position: relative;
    background-size: cover;
    background-position: center;
}

.info-modal-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    bottom: 100px;
    left: 0;
    top: unset;
}

.info-modal-image-overlay h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .info-modal-grid {
        grid-template-columns: 1fr;
    }

    .info-modal-image {
        height: 220px;
    }
}




