* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    background: #111;
    color: white;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.nav-links li a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.hero {

    position: relative;

    height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: url("../images/hero.jpeg") center/cover no-repeat;

}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .55);

}

.hero-content {

    position: relative;

    z-index: 2;

}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.section {
    padding: 80px 10%;
}

.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-content img {
    width: 300px;
    border-radius: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #1d1d1d;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.card,
.travel-card {

    background: #1b1b1b;

    border: 1px solid rgba(212, 175, 55, .25);

    transition: .35s;

}

.card:hover,
.travel-card:hover {

    transform: translateY(-8px);

    border-color: #d4af37;

}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {

    width: 100%;

    border-radius: 10px;

    transition: .4s;

    cursor: pointer;

}

.gallery img:hover {

    transform: scale(1.05);

}

.travel-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.travel-card {
    background: #1d1d1d;
    padding: 20px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select,
textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.bookme-form {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

button {
    padding: 15px;
    background: #d4af37;
    border: none;
    cursor: pointer;
}

.policy-list li {
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-btn {
    width: 100%;
    text-align: left;
}

.faq-content {
    display: none;
    padding: 15px;
    background: #222;
}

footer {
    text-align: center;
    padding: 30px;
    background: #000;
}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 25px;

    margin-bottom: 20px;

}

.footer-social a {

    color: #d4af37;

    font-size: 1.5rem;

    transition: .3s;

}

.footer-social a:hover {

    color: #fff;

    transform: scale(1.2);

}

.contact {

    text-align: center;

}

.contact-text {

    color: #ccc;

    margin-bottom: 40px;

}

.social-links {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    margin-top: 30px;

}

.social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 18px;

    background: #1b1b1b;

    color: #fff;

    text-decoration: none;

    border-radius: 12px;

    border: 1px solid rgba(212, 175, 55, .25);

    transition: .35s;

    font-size: 1rem;

}

.social-links a i {

    font-size: 1.3rem;

    color: #d4af37;

}

.social-links a:hover {

    transform: translateY(-8px);

    background: #d4af37;

    color: #111;

}

.social-links a:hover i {

    color: #111;

}

html {
    scroll-behavior: smooth;
}

@media(max-width:950px) {

    .hero h1 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img {
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #000;

        flex-direction: column;

        align-items: center;

        gap: 25px;

        padding: 30px 0;

        transform: translateY(-150%);

        transition: .4s;

        opacity: 0;
    }

    .nav-links.active {

        transform: translateY(0);

        opacity: 1;

    }

}