
header {
    background-color: white;
}

.text-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.navbar .nav {
    display: flex;
    gap: 20px;
}

.navbar .nav-link {
    color: black;
    text-decoration: none;
}

.navbar .nav-link:hover {
    font-style: italic;
}

.hero-section {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 60px 0;
}

.cta-section h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
}

.cta-section .btn {
    padding: 10px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.features-section {
    padding: 40px 20px;
    color: black;
}

.features-section h2 {
    margin-bottom: 40px;
}

.feature-box {
    padding: 20px;
}

footer a {
    color: black;
    text-decoration: none;
}

.svg-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    overflow-x: auto;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    overflow-x: auto;
}

#marinaMap {
    width: 100% !important;
    max-width: none;
    height: auto !important;
    display: block;
    margin: auto;
    cursor: pointer;
    min-height: 300px;
}

.slip-boat {
    transition: fill 0.2s ease;
}

.slip-boat:hover {
    fill: #00b894 !important;
}

.slip-label {
    font-size: 10px;
    paint-order: stroke;
    stroke: black;
    stroke-width: 0.5px;
    pointer-events: none;
}

.slip-circle {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease;
    transform-origin: center;
}

.slip-circle:hover {
    fill: grey !important;
}

.hero-section.parallax {
    height: 75vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    max-width: 700px;
    padding: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
}

.wifi-pulse-group {
    pointer-events: none;
}

.wifi-pulse-ring {
    fill: rgba(13, 110, 253, 0.25);
    stroke: rgba(13, 110, 253, 0.5);
    stroke-width: 4;
    opacity: 0;
    animation: ripple 6s ease-out infinite;
}

@keyframes ripple {
    0% {
        r: 8;
        opacity: 0.4;
    }
    80% {
        r: 150;
        opacity: 0;
    }
    100% {
        r: 8;
        opacity: 0;
    }
}

.wifi-center-dot {
    fill: #0d6efd;
    filter: drop-shadow(0 0 10px #0d6efd) drop-shadow(0 0 25px rgba(13, 110, 253, 0.5));
    opacity: 1;
}

.wifi-pulse-group.hidden {
    display: none;
}
