
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f7fb;
    color: #222;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 90vh;
    color: white;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #00aaff;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 70px 8%;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.boat-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.boat-card,
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.boat-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.boat-card h3,
.service-card h3 {
    padding: 18px 18px 10px;
}

.boat-card p,
.service-card p {
    padding: 0 18px 18px;
    line-height: 1.5;
}

.boat-card span {
    display: block;
    padding: 0 18px 20px;
    font-weight: bold;
    color: #0077cc;
}

.contact-section form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-section button {
    padding: 14px;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: white;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }
}
