:root {
    --gold: #b4975a;
    --black: #000000;
    --cream: #ede6d6;
    --white: #ffffff;
    --text-dark: #333333; /* Strong dark gray for readability */
    --text-light: #555555;
}

body { 
    margin: 0; 
    font-family: 'Roboto', sans-serif; 
    overflow-x: hidden; 
    color: var(--text-dark); /* Sets default text to dark */
}

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

/* HEADER - Text is white here because background is gold */
header { background: var(--gold); color: white; }
.top-nav { padding: 10px 0; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.top-nav .container { display: flex; justify-content: space-between; align-items: center; }
.secondary-links a { color: white; text-decoration: none; margin: 0 5px; }
.search-box { background: white; border-radius: 20px; padding: 3px 15px; color: #333; }
.search-box input { border: none; outline: none; width: 100px; color: #333; }

.main-nav { padding: 20px 0; text-align: center; }
.logo-text { font-size: 38px; display: block; letter-spacing: 4px; font-weight: 300; color: white; }
.logo-tagline { font-size: 10px; letter-spacing: 3px; color: white; }
.nav-links { display: flex; justify-content: center; gap: 25px; margin-top: 15px; }
.nav-links a { color: white; text-decoration: none; font-size: 13px; text-transform: uppercase; }

/* SLIDING HERO */
.hero-container { height: 60vh; width: 100%; position: relative; overflow: hidden; background: #333; }
.slider-wrapper { display: flex; width: 400%; height: 100%; transition: transform 0.6s ease-in-out; }
.slide { width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-content-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero-content-overlay h1 { color: white; font-size: 48px; letter-spacing: 5px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); margin: 0; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 40px; color: white; cursor: pointer; padding: 20px; z-index: 5; user-select: none; }
.arrow-left { left: 10px; } .arrow-right { right: 10px; }

/* WELCOME SECTION - Text is white because background is black */
.welcome-section { background: var(--black); color: white; padding: 70px 0; }
.welcome-flex { display: flex; gap: 40px; align-items: center; }
.video-container { flex: 1; position: relative; }
.video-container img { width: 100%; border: 1px solid #333; }
.badge-gold { background: var(--gold); color: white; display: inline-block; padding: 5px 15px; margin-bottom: 15px; font-weight: bold; font-size: 12px; }
.welcome-content { flex: 1; }
.welcome-content h2 { color: white; font-size: 32px; margin: 10px 0; }
.welcome-content p { color: #e0e0e0; line-height: 1.6; }

/* FB DIVIDER */
.fb-divider { background: var(--gold); color: white; padding: 25px 0; text-align: center; }
.fb-divider h3 { margin: 0; font-size: 28px; font-weight: 300; color: white; }

/* INFO GRID - FIXED VISIBILITY */
.info-grid { padding: 60px 0; background: var(--white); }
.grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.grid-item img { width: 100%; height: 150px; object-fit: cover; border: 1px solid #eee; margin-bottom: 15px; }
.grid-item p { 
    font-size: 13px; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    height: 80px; 
    overflow: hidden; 
    color: var(--text-dark); /* Explicitly set to dark gray */
}
.btn-readmore { background: var(--gold); color: white; border: none; padding: 10px 20px; cursor: pointer; font-weight: bold; text-transform: uppercase; }

/* MAP SECTION */
.explore-map-section { background: var(--cream); padding: 80px 0; position: relative; text-align: center; overflow: hidden; }
.explore-header h2 { color: var(--gold); font-size: 32px; letter-spacing: 2px; margin: 0; }
.gold-underline { width: 60px; height: 2px; background: var(--gold); margin: 15px auto 40px; }
.map-container { max-width: 500px; margin: 0 auto; background: white; padding: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.map-container img { width: 100%; }

/* DECORATIVE CORNERS */
.corner-pattern { position: absolute; width: 200px; height: 200px; background-image: url('4_3.png'); background-size: contain; background-repeat: no-repeat; opacity: 0.1; pointer-events: none; }
.top-left { top: -40px; left: -40px; }
.top-right { top: -40px; right: -40px; transform: rotate(90deg); }
.bottom-left { bottom: -40px; left: -40px; transform: rotate(-90deg); }
.bottom-right { bottom: -40px; right: -40px; transform: rotate(180deg); }

/* ASK SECTION */
.ask-section { background: var(--black); color: white; text-align: center; padding: 60px 0; }
.ask-section h2 { color: white; font-weight: 300; }
.ask-section h2 span { color: var(--gold); font-weight: 700; }
.ask-section h3 { color: white; font-size: 40px; margin-top: 10px; }
.social-row { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.social-icon { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: black; text-decoration: none; font-size: 18px; }

/* WIDGETS */
.widget-section { background: var(--cream); padding: 50px 0; }
.widget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.widget-box .badge-gold { margin-bottom: 10px; }
.widget-content { background: white; border: 1px solid #ddd; padding: 20px; min-height: 200px; display: flex; align-items: center; justify-content: center; }
.widget-content img { max-width: 100%; height: auto; }

/* FOOTER */
footer { background: white; color: var(--text-dark); }
.footer-top { padding: 50px 0; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.contact-info p { margin: 5px 0; font-size: 13px; color: var(--text-dark); }
.partner-logos { color: var(--text-dark); font-weight: bold; }
:root {
    --gold: #b4975a;
    --black: #000000;
    --cream: #ede6d6;
    --white: #ffffff;
    --text-dark: #333333;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* HERO CONTAINER */
.hero-container {
    height: 60vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #333;
}

/* SLIDER */
.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

/* EACH SLIDE */
.slide {
    min-width: 100%;          /* ✅ FIX */
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;           /* ✅ FIX */
}

/* TEXT OVERLAY */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.hero-content-overlay h1 {
    color: white;
    font-size: 48px;
    letter-spacing: 5px;
}

/* ARROWS */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 20px;
    z-index: 5;
    user-select: none;
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }
.bottom-bar { background: var(--gold); color: white; padding: 30px 0; }
.bottom-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 20px; }
.bottom-nav a { color: white; text-decoration: none; font-size: 12px; margin-left: 15px; text-transform: uppercase; }
.copyright { text-align: center; padding-top: 20px; font-size: 11px; opacity: 0.8; color: white; }