/*=====================================================
GOOGLE FONTS
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

/*=====================================================
RESET
=====================================================*/

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

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #faf8f4;
    color: #262626;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/*=====================================================
VARIABLES
=====================================================*/

:root {

    --primary: #b58b57;

    --primary-dark: #9c7546;

    --background: #faf8f4;

    --white: #ffffff;

    --text: #262626;

    --gray: #707070;

    --border: #e7dfd4;

    --shadow: 0 18px 45px rgba(0, 0, 0, .08);

    --radius: 20px;

    --transition: .35s ease;

}

/*=====================================================
GLOBAL
=====================================================*/

.container {

    width: min(1180px, 92%);
    margin: auto;

}

.section {

    padding: 120px 0;

}

.section-header {

    text-align: center;
    margin-bottom: 80px;

}

.section-header h2 {

    font-family: 'Playfair Display', serif;
    font-size: 3.3rem;
    margin: 20px 0;

}

.section-header p {

    max-width: 700px;
    margin: auto;
    color: var(--gray);

}

.section-label {

    display: inline-block;

    color: var(--primary);

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: .8rem;

    font-weight: 700;

}

/*=====================================================
BUTTONS
=====================================================*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 36px;

    border-radius: 50px;

    transition: var(--transition);

    font-weight: 600;

}

.btn-primary {

    background: var(--primary);

    color: #fff;

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-4px);

}

.btn-outline {

    border: 1px solid var(--primary);

    color: var(--primary);

}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;

}

/*=====================================================
HEADER
=====================================================*/

.header {

    position: fixed;

    width: 100%;

    top: 0;

    left: 0;

    z-index: 999;

    background: rgba(250, 248, 244, .92);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

}

.nav {

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    font-weight: 700;

    letter-spacing: 1px;

}

.nav-links {

    display: flex;

    gap: 35px;

}

.nav-links a {

    position: relative;

    font-weight: 500;

    transition: .3s;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

.nav-links a:hover {

    color: var(--primary);

}

.nav-links a:hover::after {

    width: 100%;

}

.menu-toggle {

    display: none;

    background: none;

    border: none;

    font-size: 1.5rem;

    cursor: pointer;

}

/*=====================================================
HERO
=====================================================*/

.hero {

    position: relative;

    height: 100vh;

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

    display: flex;

    align-items: center;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(250, 248, 244, .92),
            rgba(250, 248, 244, .45),
            rgba(250, 248, 244, .12));

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

}

.hero-tag {

    display: inline-block;

    color: var(--primary);

    letter-spacing: 4px;

    font-size: .8rem;

    font-weight: 700;

    margin-bottom: 20px;

}

.hero h1 {

    font-family: 'Playfair Display', serif;

    font-size: 5.4rem;

    line-height: 1.05;

    margin-bottom: 25px;

}

.hero p {

    font-size: 1.05rem;

    color: var(--gray);

    margin-bottom: 40px;

    max-width: 550px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

}

/*=====================================================
FEATURED STORY
=====================================================*/

.featured-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.featured-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.featured-image:hover img {

    transform: scale(1.05);

}

.featured-content h2 {

    font-family: 'Playfair Display', serif;

    font-size: 3.4rem;

    line-height: 1.15;

    margin: 20px 0;

}

.featured-content p {

    color: var(--gray);

    margin-bottom: 35px;

}

.read-more {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--primary);

    font-weight: 700;

}

.read-more i {

    transition: .3s;

}

.read-more:hover i {

    transform: translateX(8px);

}

/*=====================================================
ABOUT
=====================================================*/

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.about-content h2 {

    font-family: 'Playfair Display', serif;

    font-size: 3.2rem;

    line-height: 1.2;

    margin: 20px 0 30px;

}

.about-content p {

    color: var(--gray);

    margin-bottom: 20px;

}

.about-image {

    border-radius: 28px;

    overflow: hidden;

    box-shadow: var(--shadow);

}

.about-image img {

    height: 720px;

    object-fit: cover;

    transition: .5s;

}

.about-image:hover img {

    transform: scale(1.05);

}

.about-details {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;

}

.about-details div {

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 24px;

}

.about-details h4 {

    font-family: 'Playfair Display', serif;

    color: var(--primary);

    margin-bottom: 8px;

}

.about-details span {

    color: var(--gray);

}


/*=====================================================
SIGNATURE EXPERIENCES
=====================================================*/

.experience {

    background: #fff;

}

.experience-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.experience-card {

    background: #faf8f4;

    border-radius: 26px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);

}

.experience-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.experience-card img {

    height: 280px;

    object-fit: cover;

}

.experience-info {

    padding: 30px;

}

.experience-info span {

    color: var(--primary);

    font-size: .85rem;

    letter-spacing: 3px;

    font-weight: 700;

}

.experience-info h3 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    margin: 12px 0;

}

.experience-info p {

    color: var(--gray);

}


/*=====================================================
MEMBERSHIP
=====================================================*/

.membership {

    background: #f4efe8;

}

.pricing-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.pricing-card {

    position: relative;

    background: #fff;

    border-radius: 25px;

    padding: 45px 35px;

    text-align: center;

    border: 1px solid var(--border);

    transition: .35s;

}

.pricing-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.pricing-card h4 {

    text-transform: uppercase;

    letter-spacing: 3px;

    color: var(--primary);

    margin-bottom: 10px;

}

.pricing-card h3 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    margin-bottom: 20px;

}

.price {

    font-family: 'Playfair Display', serif;

    font-size: 3.2rem;

    color: var(--primary);

    margin-bottom: 30px;

}

.pricing-card ul {

    margin-bottom: 35px;

}

.pricing-card li {

    margin: 15px 0;

    color: var(--gray);

}

.pricing-btn {

    display: inline-block;

    padding: 14px 34px;

    border-radius: 50px;

    background: var(--primary);

    color: #fff;

    transition: .35s;

}

.pricing-btn:hover {

    background: var(--primary-dark);

}

.featured {

    transform: scale(1.05);

    border: 2px solid var(--primary);

}

.featured:hover {

    transform: scale(1.05) translateY(-10px);

}

.badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: var(--primary);

    color: #fff;

    font-size: .75rem;

    padding: 8px 14px;

    border-radius: 50px;

}


/*=====================================================
EDITORIAL GALLERY
=====================================================*/

.gallery {

    background: #fff;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 260px;

    gap: 20px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 22px;

}

.gallery-item.large {

    grid-row: span 2;

}

.gallery-item.wide {

    grid-column: span 2;

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

    cursor: pointer;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

/*=====================================================
TRAVEL JOURNAL
=====================================================*/

.travel {

    background: #f4efe8;

}

.travel-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.travel-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid var(--border);

    transition: var(--transition);

}

.travel-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.travel-date {

    display: inline-block;

    color: var(--primary);

    font-size: .85rem;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 18px;

}

.travel-card h3 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    margin-bottom: 15px;

}

.travel-card p {

    color: var(--gray);

}

/*=====================================================
TESTIMONIALS
=====================================================*/

.testimonials {

    background: #fff;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.testimonial-card {

    background: #faf8f4;

    padding: 40px;

    border-radius: 24px;

    border: 1px solid var(--border);

    transition: .35s;

}

.testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.stars {

    color: #d8a93a;

    font-size: 1.2rem;

    margin-bottom: 20px;

}

.testimonial-card p {

    color: var(--gray);

    margin-bottom: 25px;

    font-style: italic;

}

.testimonial-card h4 {

    font-family: 'Playfair Display', serif;

}

.ter-button {

    text-align: center;

    margin-top: 60px;

}

/*=====================================================
BOOKING
=====================================================*/

.booking {

    background: #f4efe8;

}

.booking-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: start;

}

.booking-text h2 {

    font-family: 'Playfair Display', serif;

    font-size: 3rem;

    margin: 20px 0;

}

.booking-text p {

    color: var(--gray);

    margin-bottom: 30px;

}

.booking-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.booking-list li {

    display: flex;

    gap: 12px;

    align-items: center;

    color: var(--gray);

}

.booking-list i {

    color: var(--primary);

}

.booking-form {

    background: #fff;

    padding: 40px;

    border-radius: 24px;

    box-shadow: var(--shadow);

}

.booking-form input,
.booking-form select,
.booking-form textarea {

    width: 100%;

    margin-bottom: 18px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 14px;
    font-size: 16px;

    outline: none;

    transition: .3s;

    background: #fff;
    box-sizing: border-box;

}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {

    border-color: var(--primary);

}

.booking-form textarea {

    resize: vertical;

}

.booking-form button {

    width: 100%;

    border: none;

    cursor: pointer;

}

/*=====================================================
FAQ
=====================================================*/

.faq {

    background: #fff;

}

.faq-container {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    border-bottom: 1px solid var(--border);

}

.faq-btn {

    width: 100%;

    background: none;

    border: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 0;

    cursor: pointer;

    font-size: 1rem;

    font-weight: 600;

}

.faq-btn i {

    color: var(--primary);

}

.faq-content {

    display: none;

    color: var(--gray);

    padding: 0 0 25px;

}

/*=====================================================
CONTACT
=====================================================*/

.contact {

    background: #faf8f4;

}

.social-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 25px;

}

.social-card {

    background: #fff;

    padding: 35px 20px;

    border-radius: 22px;

    text-align: center;

    border: 1px solid var(--border);

    transition: .35s;

}

.social-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.social-card i {

    font-size: 2rem;

    color: var(--primary);

    margin-bottom: 15px;

}

.social-card span {

    display: block;

    font-weight: 600;

}

/*=====================================================
FOOTER
=====================================================*/

.footer {

    background: #222;

    color: #fff;

    padding: 80px 0 40px;

}

.footer-wrapper {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 40px;

    align-items: flex-start;

}

.footer h2 {

    font-family: 'Playfair Display', serif;

    font-size: 2.4rem;

    margin-bottom: 10px;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-links a {

    color: #d6d6d6;

    transition: .3s;

}

.footer-links a:hover {

    color: var(--primary);

}

.footer-copy {

    text-align: right;

    color: #bdbdbd;

}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:992px) {

    .featured-grid,
    .about-grid,
    .booking-grid {

        grid-template-columns: 1fr;

    }

    .experience-grid,
    .pricing-grid,
    .travel-grid,
    .testimonial-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .social-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .menu-toggle {

        display: block;

    }

    .nav-links {

        position: fixed;

        top: 90px;

        left: -100%;

        width: 100%;

        background: #fff;

        flex-direction: column;

        padding: 40px;

        gap: 25px;

        transition: .35s;

        box-shadow: var(--shadow);

    }

    .nav-links.active {

        left: 0;

    }

    .hero {

        text-align: center;

    }

    .hero-content {

        margin: auto;

    }

    .hero h1 {

        font-size: 3.2rem;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .section {

        padding: 90px 0;

    }

    .section-header h2 {

        font-size: 2.4rem;

    }

    .experience-grid,
    .pricing-grid,
    .travel-grid,
    .testimonial-grid,
    .social-grid {

        grid-template-columns: 1fr;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 280px;

    }

    .gallery-item.large,
    .gallery-item.wide {

        grid-column: auto;

        grid-row: auto;

    }

    .footer-wrapper {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-copy {

        text-align: center;

    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-image {
        width: 100%;
    }

    .featured-image img {
        height: 380px;
    }

    .featured-content {
        width: 100%;
    }

    .featured-content h2 {
        font-size: 2.2rem;
    }

    .featured-content p {
        font-size: 1rem;
    }

}

@media(max-width:480px) {

    .hero h1 {

        font-size: 2.6rem;

    }

    .featured-content h2,
    .about-content h2,
    .booking-text h2 {

        font-size: 2.2rem;

    }

    .booking-form {

        padding: 25px;

    }

    .featured-image img,
    .about-image img {

        height: auto;

    }

}