/* Add this at the very top of style.css */
:root {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* {
    max-width: 100vw; 
}

/* ── 1. GLOBAL RESET & BASE ── */
* {
    box-sizing: border-box;
}

html {
    font-size: 22px; 
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #0F4881; 
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── 2. HEADER & NAVIGATION ── */
header {
    background: #ffffff;
    border-bottom: 2px solid #0F4881;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

header h1 { 
    font-size: 64px;
    color: #0F4881;
    margin: 0 0 10px 0;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 1.2;
}

nav {
    margin-top: 25px;
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #0F4881;
    font-weight: bold;
    font-size: 22px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* ── 3. TYPOGRAPHY ── */
h2 { font-size: 2.2rem; color: #0F4881; margin-bottom: 20px; }
h3 { font-size: 1.8rem; color: #0F4881; margin-bottom: 15px; }

p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1rem;
    color: #0F4881;
}

/* ── 4. LAYOUT CONTAINERS ── */
main {
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.hero-text {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%; 
}

/* ── 5. HERO & BANDS ── */
.hero {
    width: 100%;
    margin-bottom: 30px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 50px;
    border-radius: 8px;
    max-width: 90%;
    text-align: center;
}

.hero-overlay h2 {
    color: #ffffff !important;
    margin: 0;
    font-size: 2.6rem;
}

.band {
    width: 100%;
}

.band:nth-child(even) {
    background-color: #e8f2fb;
}

/* ── 6. ABOUT US SPLIT SECTIONS ── */
.split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.split.reverse { flex-direction: row-reverse; }
.split .image, .split .text { flex: 1; }

.split .image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ── 7. MEETS & TOURS: CARDS & SLIDESHOW ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: transparent;
    text-align: center;
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.slideshow-wrapper {
    position: relative;
    max-width: 1000px; 
    margin: 0 auto;
}

.slideshow {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slides-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 500px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0F4881;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 2rem;
}

.slide-btn.prev { left: -25px; }
.slide-btn.next { right: -25px; }

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a0bcd4;
    border: none;
    cursor: pointer;
}

.dot.active { background: #0F4881; }

/* ── 8. BUTTONS ── */
.btn {
    display: inline-block;
    background-color: #0F4881;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1a73e8;
    transform: translateY(-2px);
}

/* ── 9. FOOTER & SOCIALS ── */
footer {
    background: #0F4881;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.whatsapp { background-color: #25D366; }
.email { background-color: #ffffff; color: #0F4881 !important; font-size: 1.4rem; }

footer p {
    margin: 15px 0 0 0;
    font-size: 0.8rem;
    color: white;
}

/* ── 10. MOBILE PROTECTION ── */
@media (max-width: 900px) {
    header h1 { font-size: 36px; }
    nav a { display: block; margin: 15px 0; font-size: 18px; }
    
    .split, .split.reverse {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }
    
    .card-grid { grid-template-columns: 1fr; }
    .slide { height: 350px; }
    .slide-btn { display: none; }
}

/* ── 11. FAQ ACCORDION STYLES ── */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-item {
    border: 2px solid #0F4881;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    background-color: #ffffff;
    color: #0F4881;
    padding: 20px 25px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question.active {
    background-color: #0F4881;
    color: #ffffff;
}

.faq-answer {
    display: none;
    padding: 25px;
    color: #0F4881;
    border-top: 1px solid #0F4881;
    line-height: 1.6;
    background-color: #fcfdfe;
}

.faq-answer.open {
    display: block;
}

/* ── 12. HOME PAGE SPECIFIC OVERRIDES (CRITICAL FIXES) ── */

/* Centers home page headings and matches main intro width */
.home-specific {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 5%;
    text-align: center;
}

.home-specific h2 {
    text-align: center !important; 
    margin-bottom: 25px;
}

.home-specific p {
    text-align: justify;
    max-width: 100%; 
    margin: 0 auto;
}

/* Smaller Hero Title */
.home-overlay-fix h2 {
    font-size: 1.8rem !important; 
    line-height: 1.3;
}

/* Force the image and blue overlay to touch browser edges */
.home-main {
    max-width: none !important;
}

.full-bleed {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Darker, wider blue band for the home hero */
.home-overlay-fix {
    background: rgba(15, 72, 129, 0.85) !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
}