/* Shared styles across Venture Living pages */

main {
    width: 100%;
    overflow: hidden;
}

h1, h2 {
 line-height: 3rem !important;
}

/* Custom Fonts */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Body themes */
.dark-body {
    background-color: #1c1e30;
    color: #e2e8f0;
}
.light-body {
    background-color: #fff;
    color: #1c1e30;
}

/* Brand colors */
:root {
    --brand-primary: #0A192F;
    --brand-secondary: #D4AF37;
    --brand-text-dark: #343a40;
}
.bg-brand-primary { background-color: var(--brand-primary); }
.text-brand-primary { color: var(--brand-primary); }
.bg-brand-secondary { background-color: var(--brand-secondary); }
.text-brand-secondary { color: var(--brand-secondary); }
.border-brand-secondary { border-color: var(--brand-secondary); }
.hover\:bg-brand-secondary-dark:hover { background-color: #c09a3e; }

/* Header scroll effect */
#main-header {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#main-header.scrolled {
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}
#main-header.scrolled .nav-link { color: var(--brand-text-dark); }
#main-header.scrolled .logo-img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(21%) saturate(4125%) hue-rotate(189deg) brightness(97%) contrast(98%);
}
#main-header.scrolled .nav-link:hover { color: var(--brand-primary); }

/* Mobile menu styles */
#mobile-menu { background-color: #ffffff; }
#mobile-menu a { color: #333333; }

/* Hero video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.65);
    z-index: -1;
}

/* Swiper styles */
.swiper-button-next, .swiper-button-prev {
    color: var(--brand-secondary);
    top: 50%;
    transform: translateY(-50%);
}
.case-study-slider .swiper-button-next { right: -10px; }
.case-study-slider .swiper-button-prev { left: -10px; }
.testimonial-slider .swiper-button-next, .testimonial-slider .swiper-button-prev {
    color: var(--brand-primary);
}
.testimonial-slider .swiper-button-next { right: -10px; }
.testimonial-slider .swiper-button-prev { left: -10px; }
.swiper-pagination-bullet-active { background: var(--brand-secondary); }

/* FAQ */
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }

/* Page visibility */
.page { display: none; }
.page.active { display: block; }

/* Testimonial */
.testimonial-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 250px;
    padding: 1rem;
}
.testimonial-slide-content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 9999px;
}

/* Step connector used on several pages */
.step-connector {
    position: absolute;
    top: 2rem;
    height: 2px;
    background-image: linear-gradient(to right, #d1d5db 50%, transparent 50%);
    background-size: 10px 2px;
    z-index: -1;
}
