:root { --primary: #0066cc; --accent: #00b894; }

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

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

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

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

.logo img { height: 58px; width: auto; }

.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: 13px 30px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600;
}

.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: 900px; padding: 2rem; }

h2 { 
    text-align: center; 
    margin: 5rem 0 3rem; 
    font-size: 2.6rem; 
    color: var(--primary); 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); 
    gap: 2rem; 
    max-width: 1250px; 
    margin: 0 auto; 
    padding: 0 1.5rem 5rem;
}

.card { 
    background: white; 
    padding: 2rem; 
    border-radius: 18px; 
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.4rem;
}

.image-container img { 
    width: 100%; 
    height: 245px; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.12);   /* Hover zoom / pop-up effect */
}

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

/* Mobile Optimization */
@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    .nav-links { gap: 1.2rem; }
    
}
.under-construction {
    margin-top: 25px;
    color: #ff9800;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
