/* --- Global Variables --- */
:root {
    --sky-blue: #87CEEB;
    --cloud-white: #f0f8ff;
    --sunset-yellow: #FFF9C4;
    --navy: #002147;
    --gold: #FFD700;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: linear-gradient(180deg, var(--sunset-yellow) 0%, var(--sky-blue) 40%, var(--cloud-white) 100%);
    background-size: 200% 200%;
    animation: skyMovement 15s ease-in-out infinite;
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

@keyframes skyMovement { 
    0%, 100% { 
        background-position: 50% 0%; 
    } 
    50% { 
        background-position: 50% 100%; 
    } 
}

a { 
    text-decoration: none; 
}

/* Blue Numbers on Mobile */
a[href^=tel] { 
    color: inherit !important; 
    text-decoration: none !important;
}

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

/* Nav nav*/
.top-nav { 
    background: rgba(255, 255, 255, 0.95); 
    padding: 12px 0; 
    border-bottom: 2px solid var(--gold); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-box { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

.nav-logo { 
    height: 70px; 
    width: auto; 
    transition: transform 0.3s ease;
}

.nav-logo:hover { 
    transform: scale(1.05); 
}

.nav-tagline { 
    font-weight: bold; 
    color: var(--navy); 
    font-size: 0.85rem; 
    text-align: right;
    max-width: 150px;
    line-height: 1.2;
}

/* --- Hero Section --- */
.hero { 
    text-align: center; 
    padding: 35px 0 15px 0; 
    color: var(--navy); 
}

.hero h1 { 
    font-size: 2.2rem; 
    margin: 5px 0; 
}

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

/* --- Contact Band --- */
.contact-band {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; 
    position: relative;
    margin: 0 0 20px 0;
    min-height: 200px;
}

.band-overlay { 
    height: 100%; 
    background: rgba(0, 33, 71, 0.4); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.btn-group { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.btn { 
    padding: 12px 25px; 
    border-radius: 50px; 
    font-weight: bold; 
    transition: 0.3s; 
    display: inline-block;
}

.wa-btn { 
    background: #25D366; 
    color: white; 
}

.email-btn { 
    background: var(--gold); 
    color: var(--navy); 
}

.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
}

/* --- Content Sections --- */
.glass-box {
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(10px);
    padding: 30px; 
    border-radius: 25px; 
    text-align: center; 
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 20px 0;
}

.section-title { 
    text-align: center; 
    color: var(--navy); 
    margin-top: 40px; 
}

/* --- Tour Grid & Flip Cards --- */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    margin: 40px auto;
    padding-bottom: 80px; 
}

.flip-card { 
    height: 480px; 
    perspective: 1000px; 
}

.flip-card-inner { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    transition: transform 0.6s; 
    transform-style: preserve-3d; 
}

.flip-card:hover .flip-card-inner { 
    transform: rotateY(180deg); 
}

.flip-card-front, .flip-card-back { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    backface-visibility: hidden; 
    border-radius: 20px; 
    overflow: hidden; 
}

.flip-card-front img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.overlay { 
    position: absolute; 
    bottom: 0; 
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85)); 
    width: 100%; 
    padding: 25px; 
    color: white; 
    text-align: center; 
    box-sizing: border-box;
}

.flip-card-back { 
    background: white; 
    transform: rotateY(180deg); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    padding: 25px; 
    border: 3px solid var(--sky-blue); 
    text-align: center; 
    box-sizing: border-box; 
}

.flip-card-back h3 { 
    color: var(--navy); 
    margin: 0 0 10px 0; 
}

.flip-card-back ul { 
    text-align: left; 
    list-style: none; 
    padding: 0; 
    margin: 10px 0; 
    width: 100%; 
}

.flip-card-back li { 
    margin-bottom: 8px; 
    font-size: 0.95rem; 
}

/* --- PayFast/YOCO / Card Button --- */
.card-btn { 
    background: var(--navy); 
    color: white; 
    padding: 12px 30px; 
    border-radius: 50px; 
    font-weight: bold; 
    margin-top: 10px; 
    width: 90%; 
    border: none; 
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}

.card-btn:hover { 
    background: var(--sky-blue); 
    color: var(--navy); 
}

/* --- Footer --- */
.footer-divider { 
    height: 5px; 
    background: var(--gold); 
}

.site-footer { 
    background: var(--navy); 
    color: white; 
    padding: 25px 0 15px 0; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 20px; 
    align-items: center; 
    text-align: center; 
}

.footer-logo { 
    height: 45px; 
}

.footer-col p { 
    margin: 5px 0; 
    font-size: 0.85rem; 
}

.footer-col.contact p, 
.footer-col.contact p a { 
    color: white !important; 
}

.banking-card { 
    background: rgba(255, 255, 255, 0.08); 
    padding: 10px 20px; 
    border-radius: 8px; 
    display: inline-block; 
}

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    margin-top: 20px; 
    padding-top: 15px; 
    font-size: 0.75rem; 
    opacity: 0.6; 
    text-align: center; 
}

/* --- Floating whatsapp --- */
.whatsapp-float {
    position: fixed; 
    bottom: 25px; 
    right: 25px;
    width: 60px; 
    height: 60px; 
    background: #25d366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    z-index: 2000;
    transition: 0.3s;
}

.whatsapp-float:hover { 
    transform: scale(1.1); 
}

.whatsapp-float img { 
    width: 35px; 
    height: 35px; 
}

/* --- Responsive Media Queries --- */
@media (min-width: 1024px) {
    .footer-grid { 
        grid-template-columns: 1fr 1.5fr 1fr; 
        text-align: left; 
    }
    .nav-tagline { 
        font-size: 0.95rem; 
    }
    .contact-band { 
        background-attachment: fixed; 
    }
}

@media (max-width: 480px) {
    .nav-logo { 
        height: 60px; 
    }
    .hero h1 { 
        font-size: 1.8rem; 
    }
    .flip-card { 
        height: 500px; 
    }
}