/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: url('/assests/main1.jpeg') center center/cover no-repeat;
    position: relative;
    padding: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}


.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
}


.hero-title {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
}


.highlight-text {
    color: #f4a100;
    font-style: italic;
}


.hero-subtitle {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    opacity: 0.9;
}


.hero-buttons .btn {
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}



/* SECTION BACKGROUND */
.privacy-section {
    background-color: #f4f3ef;
}


.small-icon {
    font-size: 20px;
    color: #d39a2a;
}


.section-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.highlight-word {
    color: #b0aca5;
}


.section-text {
    font-size: 15px;
    color: #555;
    max-width: 450px;
}


.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    background: #000;
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    font-size: 12px;
}

.feature-item h6 {
    margin: 0;
    font-weight: 600;
}

.feature-item p {
    font-size: 13px;
    margin: 2px 0 0;
    color: #666;
}

/* Image Cards */
.image-card {
    width: 100%;
    height: 380px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.small-card {
    background-image: url('/assests/out1.jpeg');
}

.large-card {
    background-image: url('/assests/main3.jpeg');
}

/* Responsive */
@media (max-width: 992px) {

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .section-text {
        text-align: center;
        margin: auto;
    }

    .feature-item {
        justify-content: center;
    }

    .image-card {
        height: 300px;
    }

}

@media (max-width: 576px) {

    .section-title {
        font-size: 26px;
    }

    .image-card {
        height: 250px;
        border-radius: 18px;
    }

}


/* SECTION BACKGROUND */
.comfort-section {
    background-color: #0f0f0f;
    color: #ffffff;
}


.section-label {
    color: #d4a017;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
}


.section-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
}


.section-description {
    color: #aaa;
    max-width: 350px;
    font-size: 14px;
}


.divider {
    border-color: #333;
    margin: 20px 0;
}


.feature-card {
    padding: 40px 25px;
    border: 1px solid #222;
    height: 100%;
    transition: 0.3s ease;
}

.feature-card i {
    color: #d4a017;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: #aaa;
}


.feature-card:hover {
    background-color: #141414;
    border-color: #333;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .section-heading {
        font-size: 36px;
    }

    .section-description {
        text-align: left;
        margin-top: 10px;
    }

    .feature-card {
        border-bottom: 1px solid #222;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 28px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* SECTION BACKGROUND */
.experience-section {
    background-color: #f3f1ec;
}


.experience-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.experience-card:hover .card-img {
    transform: scale(1.08);
}


.gallery-large-card {
    height: 500px;

}

.big-img {
    width: 140%;

}

.gallery-small-card {
    height: 240px;
}


.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
}


.overlay-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    max-width: 80%;
}

.overlay-content h2 {
    font-size: 32px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 14px;
    margin-top: 8px;
    color: #ddd;
}


.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

/* RESPONSIVE*/

@media (max-width: 992px) {

    .gallery-large-card {
        height: 400px;
    }

    .gallery-small-card {
        height: 220px;
    }

    .overlay-content {
        left: 25px;
        bottom: 25px;
    }

}

@media (max-width: 576px) {

    .large-card {
        height: 320px;
    }

    .small-card {
        height: 180px;
    }

    .overlay-content h2 {
        font-size: 22px;
    }

    .center-text {
        font-size: 15px;
    }
}



/* Section Background */
.circuit-section {
    background-color: #f4f2ed;
}


.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #d49a1e;
    font-weight: 500;
    margin-bottom: 5px;
}


.section-title {
    font-size: 38px;
    font-weight: 600;
}


.view-link {
    font-size: 14px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.view-link:hover {
    color: #d49a1e;
}


.circuit-card {
    background: #fff;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.image-wrapper:hover img {
    transform: scale(1.07);
}

/* Time Badge */
.time-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Card Content */
.card-content {
    padding: 15px 5px;
}

.card-content h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.card-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

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

@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .image-wrapper img {
        height: 360px;
    }
}

@media (max-width: 576px) {

    .section-title {
        font-size: 24px;
    }

    .image-wrapper img {
        height: 300px;
    }

    .view-link {
        margin-top: 10px;
    }
}


.testimonial-section {
    background: #f3f3f3;
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonial-text {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.5;
    color: #1a1a1a;
}

.stars {
    color: #c89b3c;
    font-size: 18px;
    letter-spacing: 3px;
}

.guest-name {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.guest-meta {
    color: #777;
    font-size: 12px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 20px;
        padding: 0 10px;
    }

    .testimonial-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .testimonial-text {
        font-size: 18px;
    }
}


.cta-wrapper {
    background: #f4f1ec;
}

/* Main Card */
.cta-box {
    background: #8c4300;
    color: #fff;
    padding: 70px 40px;
    border-radius: 30px;
    max-width: 900px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Title */
.cta-title {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

/* Subtitle */
.cta-subtitle {
    color: #f3d9b1;
    max-width: 520px;
    margin: 15px auto 0;
    font-size: 14px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 600;
}

.cta-btn-secondary {
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 500;
}

/* Location text */
.cta-location {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d9a86c;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .cta-box {
        padding: 50px 25px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }
}

