* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.logo img {
    height: 50px; /* You can adjust this to suit your design */
}

.menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.menu a:hover {
    text-decoration: underline;
}

/* Desktop view */
@media (min-width: 768px) {
    .navbar {
        padding: 15px 30px;
    }

    .menu a {
        font-size: 18px;
    }
}

/* Tablet view (768px to 480px) */
@media (max-width: 767px) and (min-width: 480px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .menu a {
        margin: 10px 0;
    }
}

/* Mobile view (less than 480px) */
@media (max-width: 479px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        height: 40px; /* Adjust logo size for mobile view */
    }

    .menu a {
        margin: 10px 0;
        font-size: 14px;
    }
}


/* Hero Section */
.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; /* Full height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero .book-now {
    padding: 10px 30px;
    background-color: #000033;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.hero .book-now:hover {
    background-color: #333366;
}

/* Desktop view */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 60px; /* Adjust font size for larger screens */
    }

    .hero .book-now {
        font-size: 20px;
    }
}

/* Tablet view (768px to 480px) */
@media (max-width: 767px) and (min-width: 480px) {
    .hero h1 {
        font-size: 36px; /* Adjust font size for tablets */
    }

    .hero .book-now {
        font-size: 16px;
    }
}

/* Mobile view (less than 480px) */
@media (max-width: 479px) {
    .hero h1 {
        font-size: 28px; /* Adjust font size for small screens */
    }

    .hero .book-now {
        font-size: 14px;
    }
}


/* Discover Section */
.discover {
    padding: 20px;
    background-color: #f4f4f4;
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.popular {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popular span {
    font-size: 18px;
    margin-right: 10px;
}

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

.pill img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.banner {
    width: 100%;
    margin-bottom: 30px;
}

.banner img {
    width: 100%;
    height: auto;
}

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

.card {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bookmark {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Styling */

/* Tablet View (480px to 768px) */
@media (max-width: 767px) and (min-width: 480px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View (Less than 480px) */
@media (max-width: 479px) {
    .cards {
        grid-template-columns: 1fr;
    }

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

    .pills {
        flex-direction: column;
    }

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

/* Desktop View (768px and above) */
@media (min-width: 768px) {
    .heading h2 {
        font-size: 40px;
    }

    .pills {
        gap: 30px;
    }
}

/* Contact Section */
#contact {
    padding: 40px;
    background-color: #f9f9f9;
}

#contact h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

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

.contact_info_div {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 48%; /* Adjust width for two columns on desktop */
}

.contact_info_div h4 {
    font-size: 24px;
    border-bottom: 2px solid red;
    margin-bottom: 10px;
}

.contact_info_div p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Mobile view */
@media (max-width: 479px) {
    #contact h3 {
        font-size: 24px;
    }

    .contact_info {
        flex-direction: column;
    }

    .contact_info_div {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact_info_div h4 {
        font-size: 20px;
    }

    .contact_info_div p {
        font-size: 14px;
    }
}

/* Tablet view (480px to 768px) */
@media (max-width: 767px) and (min-width: 480px) {
    #contact h3 {
        font-size: 28px;
    }

    .contact_info {
        flex-direction: column;
    }

    .contact_info_div {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact_info_div h4 {
        font-size: 22px;
    }

    .contact_info_div p {
        font-size: 15px;
    }
}

/* Desktop view (768px and above) */
@media (min-width: 768px) {
    .contact_info {
        flex-direction: row;
    }

    .contact_info_div {
        width: 48%; /* Two columns on desktop */
    }
}
/* General footer styles */
footer {
    background-color: rgb(0, 0, 51);
    color: white;
    padding: 20px;
  }
  
  /* Footer sections */
  .footer-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-column {
    flex: 1;
  }
  
  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  /* Social Icons Section */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  /* Copyright Section */
  .footer_rights {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Desktop: 768px and above */
  @media (min-width: 768px) {
    footer {
      padding: 20px 50px;
    }
    .footer-section {
      flex-direction: row;
    }
    .footer-column {
      flex: 1;
    }
  }
  
  /* Tablets: 480px to 768px */
  @media (max-width: 767px) and (min-width: 480px) {
    footer {
      padding: 20px;
    }
    .footer-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      margin-bottom: 20px;
    }
    .social-icons {
      flex-direction: row;
      margin-bottom: 20px;
    }
  }
  
  /* Mobile: Less than 480px */
  @media (max-width: 479px) {
    .footer-section {
      flex-direction: column;
      align-items: center;
    }
    .social-icons {
      flex-direction: column;
    }
  }
  
  