/* --- COLOR PALETTE & VARIABLES --- */
:root {
    --primary: #00d4ff;    /* Electric Cyan */
    --secondary: #002d5b;  /* Deep Navy */
    --dark: #0a0e14;       /* Midnight */
    --white: #ffffff;
    --gray: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; }

/* --- NAVIGATION --- */
nav {
    background: rgba(10, 14, 20, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.logo { color: var(--white); font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; }
.logo span { color: var(--primary); }
.nav-links a { color: white; text-decoration: none; margin-left: 25px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

/* --- HERO (FIXED OVERLAP) --- */
.parallax-window {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(10, 14, 20, 0.75), rgba(10, 14, 20, 0.75)), url('images/photo1.jpg');
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px; /* Critical spacing to prevent button overlap */
    text-align: center;
    max-width: 900px;
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); text-transform: uppercase; font-weight: 900; line-height: 1; }
.hero-subtitle { font-size: 1.3rem; font-weight: 300; letter-spacing: 2px; }
.hero-subtitle span { display: block; color: var(--primary); font-weight: 700; margin-top: 8px; }

/* --- SECTIONS --- */
.container { padding: 120px 10%; max-width: 1400px; margin: auto; }
section { scroll-margin-top: 80px; }
.bg-light { background: var(--gray); }
h2.section-title { font-size: 2.2rem; margin-bottom: 2.5rem; font-weight: 800; text-transform: uppercase; }

/* About Stats Grid */
.about-grid { display: flex; gap: 60px; flex-wrap: wrap; }
.about-text { flex: 1.5; min-width: 320px; }
.about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #444; }
.about-stats { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.stat-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-left: 5px solid var(--primary); }
.stat-card h3 { font-size: 2.2rem; color: var(--secondary); margin-bottom: 5px; }

/* Gallery Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.photo-item { height: 380px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.photo-item:hover img { transform: scale(1.08); }

/* Divider */
.divider {
    height: 45vh;
    background-image: linear-gradient(rgba(0, 45, 91, 0.65), rgba(0, 45, 91, 0.65)), url('images/photo5.jpg');
}
.divider h2 { font-style: italic; font-size: 2rem; }

/* --- BUTTONS & FORMS --- */
.btn { 
    background: var(--primary); 
    color: var(--dark); 
    padding: 20px 45px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 800; 
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.btn:hover { background: var(--white); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.contact-form { max-width: 650px; margin: auto; padding: 45px; background: white; border-radius: 15px; box-shadow: 0 25px 60px rgba(0,0,0,0.12); }
input, textarea { width: 100%; padding: 18px; margin-bottom: 22px; border: 1px solid #ddd; border-radius: 6px; background: #fafafa; font-size: 1rem; outline: none; transition: var(--transition); }
input:focus, textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 10px rgba(0, 212, 255, 0.1); }
.btn-submit { width: 100%; background: var(--secondary); color: white; padding: 18px; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.btn-submit:hover { background: var(--primary); color: var(--dark); transform: scale(1.02); }

footer { background: var(--dark); color: #555; text-align: center; padding: 60px 20px; }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .parallax-window { background-attachment: scroll; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .container { padding: 80px 6%; }
}