/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #17202a;
    background: #ffffff;
    line-height: 1.6;
}

body[dir="rtl"] {
    font-family: "Cairo", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font: inherit;
}


/* =========================
   HEADER
========================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 24px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: #e07a5f;
}

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #e07a5f;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-button {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.15);
    color: white;

    padding: 8px 14px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.3s ease;
}

.language-button:hover {
    background: white;
    color: #17202a;
}

.nav-button {
    padding: 11px 20px;
    border-radius: 50px;

    background: #ffffff;
    color: #17202a;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 140px 30px 100px;

    background:
        linear-gradient(
            90deg,
            rgba(8, 22, 34, 0.80),
            rgba(8, 22, 34, 0.35)
        ),
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1800&q=85")
        center / cover no-repeat;

    color: white;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.hero-small-title,
.section-label {
    color: #e07a5f;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 1.05;
    letter-spacing: -3px;

    margin-bottom: 25px;
}

.hero h1 .highlight {
    color: #e07a5f;
}

.hero-description {
    max-width: 570px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-button {
    background: #e07a5f;
    color: white;
}

.primary-button:hover {
    transform: translateY(-3px);
    background: #d5684d;
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.secondary-button:hover {
    background: white;
    color: #17202a;
}


/* =========================
   GENERAL SECTIONS
========================= */

.destinations-section,
.explore-section,
.cta-section {
    padding: 110px 30px;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2,
.explore-text h2,
.cta-section h2 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.section-heading > p:last-child,
.explore-text > p:last-child,
.cta-section > div > p:last-child {
    color: #68737d;
}


/* =========================
   DESTINATION CARDS
========================= */

.destination-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    overflow: hidden;

    background: white;

    border: 1px solid #edf0f2;
    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(20, 30, 40, 0.08);

    transition: 0.35s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(20, 30, 40, 0.13);
}

.destination-card img {
    width: 100%;
    height: 270px;

    display: block;

    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-category {
    color: #e07a5f;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.card-content h3 {
    font-size: 25px;
    margin: 8px 0 10px;
}

.card-content p {
    color: #68737d;
    font-size: 14px;

    margin-bottom: 20px;
}

.card-link {
    color: #17202a;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.card-link:hover {
    color: #e07a5f;
}


/* =========================
   EXPLORE SECTION
========================= */

.explore-section {
    background: #f5f1ea;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}

.explore-text {
    max-width: 500px;
    margin-left: auto;
}

.travel-form {
    max-width: 500px;
    width: 100%;

    margin-right: auto;

    padding: 35px;

    background: white;
    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(20, 30, 40, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #dfe4e8;
    border-radius: 10px;

    outline: none;

    background: white;
    color: #17202a;

    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #e07a5f;
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
}

.submit-button {
    width: 100%;

    border: none;
    border-radius: 10px;

    padding: 15px;

    background: #17202a;
    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.submit-button:hover {
    background: #e07a5f;
}


/* =========================
   CTA
========================= */

.cta-section {
    text-align: center;

    background:
        linear-gradient(
            rgba(23, 32, 42, 0.92),
            rgba(23, 32, 42, 0.92)
        ),
        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80")
        center / cover;

    color: white;
}

.cta-section > div {
    max-width: 700px;
    margin: auto;
}

.cta-section > div > p:last-child {
    color: rgba(255, 255, 255, 0.75);

    max-width: 550px;
    margin: 0 auto 30px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 55px 30px 25px;

    background: #101820;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 35px;
}

.footer p {
    color: #9ba5ad;
    font-size: 14px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: #dce1e5;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #e07a5f;
}

.copyright {
    max-width: 1200px;
    margin: auto;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}


/* =========================
   RTL
========================= */

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .hero {
    background:
        linear-gradient(
            -90deg,
            rgba(8, 22, 34, 0.80),
            rgba(8, 22, 34, 0.35)
        ),
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1800&q=85")
        center / cover no-repeat;
}

html[dir="rtl"] .explore-text {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .travel-form {
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .hero h1 {
    letter-spacing: 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .explore-section {
        grid-template-columns: 1fr;
    }

    .explore-text,
    .travel-form {
        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .navbar {
        padding: 20px;
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding: 130px 20px 80px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .destinations-section,
    .explore-section,
    .cta-section {
        padding: 80px 20px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .travel-form {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}
