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

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: #1a1a1a;
    padding-top: 0;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #294f63;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
}

.nav-links a:hover {
    color: #f6d978;
}


.logo {
    font-size: 22px;
    font-weight: 600;
}

.logo a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.logo a:hover {
    color: #f6d978;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* HERO */

.hero {
    margin: 0;
    padding-top: 70px;
    height: 40vh;
    min-height: calc(40vh + 70px);
    background: linear-gradient(rgba(41,79,99,0.34), rgba(41,79,99,0.34)),
    url("Cruise/Cruise1.jpg") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.navbar + .hero {
    margin-top: 0;
}

.hero h1 {
    margin: 0 0 10px;
}

.hero p {
    margin: 0;
}

/* ABOUT SECTION */

.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-text h2 {
    color: #294f63;
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FOOTER */

footer {
    background: #294f63;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}
.social-links {
    margin-top: 10px;
}

.social-links a {
    font-size: 28px;
    color: #f6d978;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
}

/* MOBILE */

@media(max-width:1024px){
    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #294f63;
        flex-direction: column;
        display: none;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
    }
}

@media(max-width:768px){

 .services {
    grid-template-columns: 1fr;
    padding: 40px 20px;
}

.service-card:last-child {
    grid-column: auto;
}

.about-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.about-image {
    order: -1;
}

}



/* Hover readability overrides */
button:hover,
.btn:hover,
.book-btn:hover,
.contact-button:hover,
.slider-button:hover:not(:disabled),
.hero-arrow:hover {
    color: #000000;
}
