/* ==========================
GLOBAL
========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

.page-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* ==========================
HERO
========================== */

.hero-section {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-section img {
    width: 100%;
    height: clamp(300px, 50vw, 550px);
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 0;
}

/* ==========================
DIRECTORY LINKS
========================== */

.surf-links {
    background: #004f6b;
    padding: 25px;
    text-align: center;
}

.surf-links a {
    display: inline-block;
    margin: 8px;
    padding: 14px 24px;
    background: #ffc107;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.surf-links a:hover {
    background: #ffb300;
}

/* ==========================
MAP
========================== */

#map {
    width: 100%;
    height: 700px;
    border: 1px solid #ddd;
}

/* ==========================
CARDS
========================== */

.surf-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    display: flex;
    flex-direction: column;
}



.surf-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.image-credit {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* ==========================
MOBILE
========================== */

@media (max-width: 768px) {

    section {
        padding: 40px 15px;
    }

    #map {
        height: 450px;
    }

    .surf-card-img {
        height: 180px;
    }
}




/* ==========================
SECTIONS
========================== */

section {
    padding: 60px 25px;
}

/* ==========================
STICKY MENU
========================== */

.sticky-top-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    max-width: 1600px;
    margin: 0 auto;
}

/* ==========================
HEADINGS
========================== */

h2 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #1e66ff !important;
    margin-bottom: 120px;
    line-height: 1.15;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 20px 0 10px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 14px 0 6px;
}

.card h2,
.card h3,
.card h4,
section h2,
section h3,
section h4 {
    color: #1e66ff !important;
}


