/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #e6f7ff;
    /* light blue background */
    color: #0b1a2f;
    line-height: 1.6;
    font-size: 16px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 34px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    /* light transparent navbar */
    position: absolute;
    top: 0;
    z-index: 100;
    background-color: #d9f0ff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 128, 255, 0.2);
    width: 100%;
}

/* Navbar links */
.navbar .nav-links a {
    color: #0b1a2f;
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #0072ff;
}

.hero-content span {
    color: #ff0000fd;
    text-shadow: red !important;
}

/* Button with light blue gradient */
.navbar .btn {
    padding: 8px 22px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
}

.navbar .btn:hover {
    background: linear-gradient(135deg, #00e5ff, #3399ff);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.5);
}

.logo img {
    height: 90px;
    width: 110px;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    color: #0b1a2f;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, color 0.2s, text-shadow 0.2s;
}

.nav-center a:hover {
    color: #00bfff;
    transform: scale(1.1);
    text-shadow: 0 0 5px #00bfff;
}

/* UNIFIED BUTTON STYLE */
.hero-btn,
.contact-btn {
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.hero-btn:hover,
.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.5);
}

/* HERO */
.hero {
    height: 90vh;
    position: relative;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 114, 255, 0.3);
    /* light blue overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    /* text-shadow: 0px 0px 10px #00bfff; */
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    padding: 22px 0;
    width: 35vw;
    margin: auto;
}

/* SERVICES */
.services {
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    color: #0072ff;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #00bfff;
}

.line {
    width: 15vw;
    height: 4px;
    background-color: #00bfff;
    margin: 10px auto 40px auto;
    border-radius: 2px;
}

.style {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
}

.box {
    flex: 1 1 28%;
    max-width: 350px;
    min-width: 250px;
    padding: 20px;
    background: linear-gradient(145deg, #e0f0ff, #c0e0ff);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
    border: 1px solid #00bfff;
}

.box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.4);
}

.inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}

.box p {
    color: #0b1a2f;
    font-weight: bold;
    margin: 8px 0;
    text-align: left;
    /* background: red; */
    width: 19pc;
}

.box .title {
    font-size: 22px;
    color: #0072ff;
}

.box .small {
    font-size: 14px;
    color: #0b3a5f;
    font-weight: bolder;
}

.box i {
    font-size: 20px;
    margin-right: 6px;
    color: #0072ff;
    transition: all 0.3s ease;
}

.box:hover i {
    color: #00bfff;
    transform: scale(1.2);
}

/* Yacht Info Section */
.yacht-info {
    padding: 50px 20px;
    background-color: #d9f0ff;
    color: #0b1a2f;
}

.yacht-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.yacht-info-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.yacht-info-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.yacht-info-right {
    flex: 1;
    min-width: 300px;
}

.yacht-info-right h2 {
    font-size: 2.5rem;
    color: #0072ff;
    margin-bottom: 20px;
}

.yacht-info-right p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #0b3a5f;
    font-weight: 600;
}

/* Yacht Cards Section */
/* .yacht-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 50px;
}

.yacht-card {
    background: #e0f7ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.2);
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.yacht-card img {
    width: 100%;
    height: auto;
    display: block;
}

.yacht-card-content {
    padding: 15px 20px;
    color: #0b1a2f;
}

.yacht-card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0072ff;
}

.yacht-card-content p {
    font-size: 0.95rem;
    color: #0b3a5f;
}

.yacht-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 114, 255, 0.3);
} */

/* Yacht Cards Section */
.yacht-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px 8%;
}

/* Single Card */
.yacht-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;

    padding: 30px;
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Animation */
.yacht-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Text Section */
.yacht-card-content h2 {
    font-size: 26px;
    color: #0072ff;
    /* blue highlight */
    margin-bottom: 10px;
    text-transform: capitalize;
}

.yacht-card-content p {
    color: #0b3a5f;
    line-height: 1.6;
    font-size: 15px;
    max-width: 600px;
}

/* Image */
.yacht-card img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);

    transition: transform 0.3s ease;
}

.yacht-card:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .yacht-card {
        flex-direction: column;
        text-align: center;
    }

    .yacht-card img {
        width: 100%;
        height: 250px;
    }
}


/* CONTACT */
.contact-form {
    text-align: center;
    padding: 60px 20px;
    background: #ccefff;
    border-top: 2px solid #00bfff;
}

.contact-form input {
    padding: 12px;
    border-radius: 50px;
    width: 220px;
    margin: 10px 10px 10px 0;
    border: none;
    outline: none;
    background: #d9f0ff;
    color: #0b1a2f;
}

/* FOOTER */
footer {
    background: #0072ff;
    color: #fff;
    text-align: center;
    padding: 30px;
}

/* Responsive */
@media (max-width: 900px) {
    .yacht-info-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .navbar {
        display: none;
    }

    .box .small {
        width: 66vw;
    }

    .yacht-info-left,
    .yacht-info-right {
        text-align: center;
    }

    .hero-btn,
    .contact-btn {
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .box {
        flex: 1 1 90%;
    }

    .services h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn,
    .contact-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .yacht-info-right h2,
    .yacht-info-right p {
        text-align: center;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.item {
    text-align: center;
}

.pic img {
    width: 17vw;
    height: 64vh;
    object-fit: cover;
    border-radius: 10px;
}

.item p {
    font-weight: 800;
    font-style: oblique;
       color: #0b1a2f;
}

/* ------------------------ */
/* 📱 MOBILE RESPONSIVE CSS */
/* ------------------------ */

@media (max-width: 768px) {  /* Tablet & Mobile */
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }

    .pic img {
        width: 40vw;   /* Bigger image for mobile */
        height: 30vh;
    }
}

@media (max-width: 480px) {  /* Small Mobile */
    .gallery {
        grid-template-columns: 1fr; /* 1 column, images full width */
    }

    .pic img {
        width: 80vw;
        height: 35vh;
    }
}
