body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    color: #263238;
    min-height: 100vh;
}
.hero {
    background: linear-gradient(120deg, rgba(2,136,209,0.95) 60%, #00bcd4 100%), url('/assets/harbour-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px 40px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    border-radius: 0 0 36px 36px;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.7rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
nav {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 22px;
    font-weight: 500;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.12);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(2,136,209,0.08);
}
nav a:hover, nav a.active {
    background: #ffd600;
    color: #0288d1;
    transform: translateY(-2px) scale(1.06);
}
.section {
    padding: 52px 22px 40px 22px;
    max-width: 950px;
    margin: 0 auto 36px auto;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    margin-top: 38px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    justify-items: center;
}
.gallery img {
    width: 100%;
    max-width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(2,136,209,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #fff;
}
.gallery img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(2,136,209,0.18);
    border-color: #0288d1;
}
.news-section .news-item {
    background: linear-gradient(90deg, #e3f2fd 60%, #fffde4 100%);
    margin-bottom: 22px;
    border-radius: 10px;
    padding: 22px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-left: 5px solid #0288d1;
    animation: fadeIn 1s cubic-bezier(.4,0,.2,1);
}
.news-date {
    font-size: 0.98rem;
    color: #1976d2;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto;
    padding: 18px 0;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    font-size: 1.07rem;
    background: #f4fafd;
    transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1.5px solid #0288d1;
    outline: none;
    box-shadow: 0 2px 8px rgba(2,136,209,0.09);
}
.contact-form button {
    background: linear-gradient(90deg, #0288d1 60%, #00bcd4 100%);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 1.07rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(2,136,209,0.11);
}
.contact-form button:hover {
    background: #ffd600;
    color: #0288d1;
    transform: scale(1.04);
}
footer {
    text-align: center;
    padding: 22px 0;
    background: linear-gradient(90deg, #0288d1 60%, #00bcd4 100%);
    color: #fff;
    margin-top: 44px;
    border-radius: 0 0 18px 18px;
    font-size: 1.08rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 12px rgba(2,136,209,0.09);
}
/* Slider Styles */
.slider-container {
    max-width: 820px;
    margin: 0 auto 32px auto;
    position: relative;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(2,136,209,0.13);
    overflow: hidden;
    background: #fff;
}
.slider {
    display: flex;
    position: relative;
    width: 100%;
    height: 340px;
    align-items: center;
    justify-content: center;
}
.slider img.slide {
    display: none;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    position: absolute;
    left: 0;
    top: 0;
}
.slider img.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}
.slider-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0288d1;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, transform 0.2s;
    opacity: 0.7;
}
.slider-dot.active {
    background: #0288d1;
    border: 2px solid #ffd600;
    transform: scale(1.15);
    opacity: 1;
}
@media (max-width: 900px) {
    .gallery img {
        max-width: 98vw;
        height: 180px;
    }
    .section {
        padding: 28px 8px 20px 8px;
        margin-top: 22px;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    nav a {
        font-size: 1rem;
        padding: 6px 12px;
    }
    .slider, .slider img.slide {
        height: 180px;
        border-radius: 10px;
    }
    .slider-container {
        border-radius: 10px;
    }
}
@media (max-width: 600px) {
    .gallery img {
        max-width: 96vw;
        height: 140px;
    }
    .section {
        padding: 16px 2vw 12px 2vw;
        margin-top: 14px;
    }
    .hero {
        padding: 46px 8px 22px 8px;
        border-radius: 0 0 18px 18px;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
    nav {
        gap: 8px;
    }
}
