/* General Navbar Styling */
.navbar {
    background-color: rgb(0, 0, 51);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo Styling */
.logo img {
    height: 40px;
}

/* Menu Styling */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: rgb(0, 0, 51);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

/* Hidden Checkbox */
#menu-toggle {
    display: none;
}

/* Menu Button */
.menu-icon {
    font-size: 24px;
    color: white;
    display: none;
    cursor: pointer;
}

/* Show Mobile Menu When Checked */
#menu-toggle:checked + .mobile-menu {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }
}

/* Hero Section Styling */
.hero {
    background-image: url('https://github.com/Mohak-Trivedi/xcruise-assets/blob/master/hero-cruise.png?raw=true');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Hero Heading */
.hero h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Hero Button */
.hero button {
    background-color: #ffcc00;
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.hero button:hover {
    background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero button {
        font-size: 16px;
        padding: 8px 16px;
    }
}
/* Discover Section */
.discover {
    padding: 40px;
    text-align: center;
}

/* Heading */
.heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Popular Section */
.popular {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pills {
    display: flex;
    gap: 10px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: white;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
                rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    cursor: pointer;
}

.pill img {
    width: 30px;
    height: 30px;
}

/* Discover Section Banner */
.banner img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* Discover Section Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card p {
    font-size: 16px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .heading h2 {
        font-size: 22px;
    }

    .pill img {
        width: 24px;
        height: 24px;
    }
}

/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#contact {
    padding: 20px;
    text-align: center;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact_info {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact_box {
    width: 300px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact_info {
        display: block;
        text-align: center;
    }

    .contact_box {
        margin: 10px auto;
    }
}
/* Footer Styling */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer_rights {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons {
        gap: 10px;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
    }

    .footer_rights {
        font-size: 12px;
    }
}