/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* SEA BLUE THEME VARIABLES */
    --sea-dark: #00334e;      /* Deep Ocean - Header/Footer/Text */
    --sea-primary: #145374;   /* Strong Blue - Subheadings */
    --sea-accent: #5588a3;    /* Sea Blue - Buttons/Highlights */
    --sea-light: #e8f1f5;     /* Light Sea Foam - Backgrounds */
    
    /* TEXT COLORS */
    --text-dark: #333333;     /* Dark Gray for body text */
    --text-light: #ffffff;    /* White for dark backgrounds */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--sea-dark);
    font-weight: 700;
    line-height: 1.3;
}

/* Force White Titles on Dark Backgrounds */
.bg-sea-dark h1, .bg-sea-dark h2, .bg-sea-dark h3, 
.bg-sea-dark h4, .bg-sea-dark p, .bg-sea-dark span {
    color: white !important;
}
/* Exceptions for specific accented text */
.bg-sea-dark .text-sea-accent {
    color: var(--sea-accent) !important;
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--sea-accent);
    color: white;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-primary:hover {
    background-color: var(--sea-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 83, 116, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline:hover {
    background-color: white;
    color: var(--sea-dark);
}

/* --- ANIMATIONS --- */
/* Service/Feature Card Hover Effect */
.hover-card {
    background: white;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(85, 136, 163, 0.15);
    border-color: var(--sea-accent);
}

/* --- NAVIGATION STATES --- */
.nav-transparent {
    background: linear-gradient(to bottom, rgba(0, 51, 78, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 25px 0;
}
.nav-solid {
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
/* Change text color when nav becomes solid white */
.nav-solid a, .nav-solid span { color: var(--sea-dark) !important; }
.nav-solid .btn-quote { background-color: var(--sea-accent) !important; color: white !important; }

/* --- MAP DIRECTORY SCROLLBAR --- */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #f1f5f9; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--sea-accent); }

/* --- UTILITIES --- */
.bg-sea-dark { background-color: var(--sea-dark); }
.bg-sea-light { background-color: var(--sea-light); }
.text-sea-accent { color: var(--sea-accent); }