body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

/*navbar*/
.navbar {
    background: linear-gradient(to right, #1B1464, #00BFA6);
}

.hero-section {
    background: url('img/cruise-world-banner.jpg') no-repeat center center/cover;
    height: 60vh;
    color: white;
    text-align: center;
    padding: 50px;
    align-content: center;
}
.hero-about-section {
    background: url('img/cruise-world-banner.jpg') no-repeat center center/cover;
    height: 30vh;
    color: white;
    text-align: center;
    padding: 50px;
    align-content: center;
}

.cta-button {
    background-color: #FFD700;
    color: #1B1464;
    padding: 15px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
}

.cta-button:hover {
    background-color: #FFCC00;
    cursor: pointer;
}

h2.section-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1B1464;
    text-transform: uppercase;
}

.custom-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-card img {
    height: 220px;
    object-fit: cover;
}

.custom-card .card-body {
    background: linear-gradient(to right, #FFD700, #f9f6ef);
}

.btn-custom {
    background: #1B1464;
    color: #fff;
    border-radius: 50px;
}

.btn-custom:hover {
    background: #FFD700;
    color: #1B1464;
}

section {
    padding: 60px 0;
}

/*Contact us*/
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    box-shadow: none;
}

.form-control:focus {
    border-bottom: 2px solid #1B1464;
    outline: none;
    box-shadow: none;
}


/*Footer*/
footer {
    background-color: #1B1464;
    color: white;
    padding: 40px 0;
}

footer a {
    color: #FFD700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}