/* style.css - FIXED Header & Images */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-navy: #0b1c3a;
    --brand-blue: #29a9e0;
    --text-dark: #1a1a1a;
    --text-grey: #555555;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 8px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-navy);
    margin-top: 0;
    font-weight: 700;
}
a { text-decoration: none; transition: 0.3s ease; }
img { display: block; max-width: 100%; height: auto; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(41, 169, 224, 0.3);
}
.btn-primary {
    background-color: var(--brand-blue);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-navy);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
}

/* --- FIXED HEADER LAYOUT --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4%;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px; /* Slight increase for bigger logo */
}

/* 1. Logo */
.logo-container {
    flex: 1;
    padding-left: 10px;
}
.logo-container img {
    height: 85px; /* Bigger Logo as requested */
    width: auto;
}

/* 2. Desktop Navigation (FORCE VISIBLE ON LAPTOP) */
nav.desktop-nav {
    flex: 2;
    display: flex !important; /* Force show */
    justify-content: center;
}
nav.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}
nav.desktop-nav a {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 15px;
    text-transform: uppercase;
}
nav.desktop-nav a:hover { color: var(--brand-blue); }

/* 3. Sign Up Button */
.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
}
.nav-btn {
    background: var(--primary-navy);
    color: var(--white) !important;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
.nav-btn:hover { background: var(--brand-blue); }

/* --- MOBILE MENU (FORCE HIDDEN ON LAPTOP) --- */
.mobile-menu-btn {
    display: none !important; /* Hidden by default */
    font-size: 28px;
    color: var(--primary-navy);
    cursor: pointer;
}

.mobile-nav-overlay {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    z-index: 999;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay a {
    padding: 15px;
    font-weight: 600;
    color: var(--primary-navy);
    border-bottom: 1px solid #f4f4f4;
    display: block;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover !important;
    background-position: center !important;
}
.hero-content {
    max-width: 900px;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.hero-divider {
    height: 6px;
    width: 100px;
    background: linear-gradient(to right, var(--brand-blue), #ffffff);
    margin: 0 auto 30px auto;
    border-radius: 3px;
}

/* --- Mission Section --- */
.mission { padding: 80px 5%; background: var(--white); }
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mission-text h3 {
    font-size: 14px;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.mission-text h2 { font-size: 2.5rem; margin-bottom: 25px; }
.mission-text p { color: var(--text-grey); margin-bottom: 20px; }
.mission-img img { box-shadow: var(--shadow); border-radius: var(--radius); width: 100%; }

/* --- Parallax Section --- */
.parallax-section {
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
    position: relative;
}
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 28, 58, 0.7);
    z-index: 1;
}
.parallax-content { position: relative; z-index: 2; }
.parallax-content h2 { color: var(--white); font-size: 2.8rem; margin-bottom: 15px; }
.parallax-content p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px auto; opacity: 0.9; }

/* --- Footer --- */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 5% 20px;
    text-align: center;
}
.footer-content { max-width: 600px; margin: 0 auto; }
footer h3 { color: var(--brand-blue); margin-bottom: 20px; }
.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.subscribe-form input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    width: 60%;
    outline: none;
}
.subscribe-form button {
    background: var(--brand-blue);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}
.verivest-badge {
    margin: 30px auto;
    width: 120px;
    opacity: 0.9;
}
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.xesss-link {
    position: relative;
    display: inline-block;
    color: var(--brand-blue);
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
}
.xesss-link:hover::after {
    content: "Website design and developed by XESSS";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 8px;
    z-index: 10;
}

/* --- RESPONSIVE / MOBILE RULES --- */
@media (max-width: 900px) {
    /* 1. Hide Desktop Elements */
    nav.desktop-nav { display: none !important; }
    .header-cta { display: none !important; }
    
    /* 2. Show Mobile Elements */
    .mobile-menu-btn { display: block !important; }
    
    /* 3. Fix Layout */
    .hero h1 { font-size: 2.5rem; }
    .mission-grid { grid-template-columns: 1fr; }
    header { padding: 15px 20px; }
    .logo-container img { height: 60px; } /* Smaller logo for phone */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}