:root { --primary: #0066cc; }

* { margin:0; padding:0; box-sizing:border-box; }

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: #222; 
    background: #e6f0ff;
}

nav { 
    position: sticky; 
    top: 0; 
    background: rgba(255,255,255,0.98); 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 70px;
}

.nav-links { 
    display: flex; 
    gap: 2rem; 
    list-style: none; 
}

.nav-links a { 
    text-decoration: none; 
    color: #222; 
    font-weight: 500; 
}

.btn { 
    background: var(--primary); 
    color: white; 
    padding: 10px 24px; 
    border-radius: 50px; 
    text-decoration: none; 
}

.hero { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/OceanBeach.jpg') center/cover no-repeat; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white;
}

.hero-content { max-width: 800px; padding: 2rem; }

footer { 
    text-align: center; 
    padding: 3rem; 
    background: #003366; 
    color: white; 
}
