/* REMOVE DEFAULT SPACING */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}



/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #1b1b1b;
}


/* =========================
   NAVIGATION BAR
========================= */

.navbar {
    position: relative;
    height: 50px;
    background: #087cf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}


/* LOGO */

.logo {
    position: relative;
   
    color: white;
    font-size: 25px;
    font-weight: bold;
}


/* NAVIGATION LINKS */

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}


.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

.hamburger {
    top: -15px;
    display: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
}

.nav-links a:hover {
    color: #dbeaff;
}




/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: 440px;
    background: #d9d9d9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
    gap: 40px;
}

/* HERO TEXT */

.hero-text {
    width: 52%;
}

.hero-head {
    color: #087cf5;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 30px;
}


/* EXPLORE BUTTON */

.hero-text button {
    background: #087cf5;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 28px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: (1.2s)
}


.hero-text button:hover {
    transform: scale(1.005);
    background: rgb(0, 0, 252);
}


/* HERO CAROUSEL */

.hero-carousel {
    position: relative;
    top: -38px;
    width: 490px;
    height: 290px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 124, 245, 0.25);
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 50px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-carousel {
        width: min(100%, 420px);
        height: 320px;
    }
}


/* =========================
   DESTINATION SECTION
========================= */

.destinations {
    background: #1b1b1b;
    padding: 0 45px 50px;
}


/* TITLE */

.destinations h2 {
    color: white;
    text-align: center;
    font-size: 40px;
    padding: 25px 0 35px;
}


/* =========================
   DESTINATION GRID
========================= */

.destination-grid {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 50px;
}


/* =========================
   CARD
========================= */

.card {
    background: #eeeeee;
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
}


/* CARD IMAGE */

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}


/* CARD BOTTOM */

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}


/* DESTINATION NAME */

.card h3 {
    font-size: 24px;
    color: #222;
}


/* CARD BUTTON */

.card button {
    background: #087cf5;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 18px;
    cursor: pointer;
}


.card button:hover {
      transform: scale(1.1);
    background:  rgb(0, 0, 252);
}





/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #1b1b1b;
}


/* =========================
   TOP HERO SECTION
========================= */

.hero {
    background: #d9d9d9;
    padding: 100px;
    height: 30px;
    display: flex;
    align-items: flex-start;
}


.hero h1 {
    color: #000;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================
   BOOKING SECTION
========================= */

.booking {
    background: white;
    min-height: 285px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 70px;
}


/* BOOKING TEXT */

.booking-text {
    width: 55%;
}


.booking-text h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* LIST */

.booking-text ul {
    padding-left: 30px;
}


.booking-text li {
    font-size: 25px;
    margin-bottom: 25px;
    padding-left: 5px;
}


/* BOOKING IMAGE */

.booking-image {
    width: 40%;
}

.hero-text,
.hero-image {
    transform: translateY(-50px);
}

.Second-hero-section-text {
    margin: 0;
}

.Second-hero-section {
    margin: 0;
    height: 300px;
    background-color: #d9d9d9;
    font-size: 2.0rem;
    padding: 70px 70px;
}

.booking-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}


/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter {
    background: #d9d9d9;
    min-height: 335px;
    padding: 55px 30px;
    text-align: center;
}


.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
}


/* EMAIL FORM */

.email-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}


/* EMAIL INPUT */

.email-input {
    text-align: left;
}


.email-input label {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}


.email-input input {
    width: 570px;
    height: 55px;
    border: 2px solid #ddd;
    background: white;
    padding: 10px;
    font-size: 18px;
    outline: none;
}


/* JOIN BUTTON */

.email-form button {
    width: 235px;
    height: 55px;
    border: none;
    background: #087cf5;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}


.email-form button:hover {
    background: #005fc7;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #000;
    color: white;
    width: 100%;
    padding: 70px 0 80px;
}


/* FOOTER CONTAINER */

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 70px;
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* HEADINGS */

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: white;
}


/* LINKS */

.footer-column a {
    color: #888;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 25px;
    transition: 0.3s;
}


/* HOVER */

.footer-column a:hover {
    
    color: white;
}


/* =========================
   CONTACT TEXT
========================= */

.footer-column p {
    color: #888;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 45px;
}


.footer-column .phone {
    margin-top: 0;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}


.social-icons a {
    color: white;
    font-size: 30px;
    margin: 0;
    transition: 0.3s;
}


.social-icons a:hover {
    transform: scale(1.15);
    color: #087cf5;
}









/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
    .footer {
        padding: 50px 30px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 45px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
    .footer {
        padding: 45px 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-column h3 {
        font-size: 20px;
    }
    .footer-column a,
    .footer-column p {
        font-size: 15px;
    }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 900px) {

    .hero
    {   flex-direction: column;
        padding-left: 20px;
        padding-top: 40px;
        padding-right: 20px;
        height: auto;
        padding: 40px;
    }
    .hero-text {
        margin-top: 20px;
    }
    .logo {
        top: 49px;
    }
    .Second-hero-section h1 {
        font-size: 32px;
        line-height: 1.2;
        margin: 0;
    }
    .Second-hero-section{
    height: 250px;
    padding: 30px 25px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .booking {
        padding: 35px 40px;
    }
    .booking-text h2 {
        font-size: 25px;
    }
    .booking-text li {
        font-size: 20px;
    }
    .booking-image img {
        height: 230px;
    }
    .email-input input {
        width: 450px;
    }
    .email-form button {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-image-explore {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center;
    }
}


/* MOBILE */

@media (max-width: 600px) {
    .hero {
        padding: 35px 25px;
    }
    .hero h1 {
        font-size: 34px;
    }
    .booking {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 35px 25px;
    }
    .booking-text {
        width: 100%;
    }
    .booking-text h2 {
        font-size: 25px;
    }
   .booking-text li {
        font-size: 18px;

        margin-bottom: 18px;
    }
    .booking-image {
        width: 100%;
    }
    .booking-image img {
        height: 220px;
    }
    .newsletter {
        padding: 40px 20px;
    }
    .newsletter h2 {
        font-size: 25px;
    }
    .email-form {
        flex-direction: column;
        align-items: stretch;
    }
    .email-input input {
        width: 100%;
    }
    .email-form button {
        width: 100%;
    }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 30px;
    }
    .nav-links {
        gap: 20px;
    }
    .nav-links a {
        font-size: 20px;
    }
    .hero {
        padding: 50px 40px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    .card-bottom {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 20px;

    }
    .card-bottom h3 {
        margin: 0;
    }
    .card-bottom button {
        margin-left: 10px;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    .nav-links {
        flex-wrap: wrap;

        justify-content: center;
    }
    .hero {
        flex-direction: column;

        gap: 40px;
    }
    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
    }
    .destination-grid {
        grid-template-columns: 1fr;
    }
}
.menu-toggle {
    display: none;
}
.hamburger {
    display: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 20px 25px;
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
        margin-left: auto;
        z-index: 2;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: #087cf5;
        padding: 15px 20px 20px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 18px;
    }

    .menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }

    .menu-toggle:checked + .hamburger {
        color: #dbeaff;
    }
}
    .logo {
        margin-right: auto;
    }


