@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

section {
    padding: 5rem 2rem;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #fff;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0047AB; /* Matching the logo's blue */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #007bff;
}

/* Home Section */
#home {
    position: relative;
    background: url('https://image2url.com/r2/bucket1/images/1766553641171-e6048cc4-077c-4314-8649-05d257e92cbe.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 10rem 2rem;
    text-align: center;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#home h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#home p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.destination-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* About Us Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-container {
    flex: 1;
}

.about-image {
    width: 100%;
    border-radius: 10px;
}

.about-text-container {
    flex: 1;
    text-align: left;
}

.about-text-container h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Fleet Section */
.fleet-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fleet-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.fleet-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-item:hover {
    transform: translateY(-10px);
}

.fleet-item h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0 2rem;
}

.fleet-item p {
    padding: 0 2rem 1.5rem 2rem;
}

/* Tours Section */
#tours {
    background-color: #ffffff;
}
.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.tour-item {
    background-color: #87CEEB; /* Sky Blue */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tour-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tour-item h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.tour-item ul {
    list-style-position: inside;
    padding-left: 0;
}

.tour-item li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 4rem 5%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid #444;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}
