/* =========================================================
   FRIDAY RETREATS
   Premium Travel & Tourism Theme
   Company: F-Day Travel Services Pvt. Ltd.
   ========================================================= */


/* =========================================================
   1. BRAND VARIABLES
   ========================================================= */

:root {
    --primary: #5E1718;
    --primary-dark: #431011;
    --accent: #852A28;

    --background: #FDFBFB;
    --white: #FFFFFF;

    --cream: #F7F0EE;
    --cream-dark: #EDE0DD;

    --text: #241919;
    --text-light: #6F6262;

    --border: #E9DCDC;

    --shadow-sm: 0 5px 20px rgba(94, 23, 24, 0.08);
    --shadow-md: 0 12px 35px rgba(94, 23, 24, 0.12);
    --shadow-lg: 0 20px 60px rgba(94, 23, 24, 0.16);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: all 0.3s ease;
}


/* =========================================================
   2. GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--background);
    color: var(--text);

    font-family: "DM Sans", sans-serif;

    line-height: 1.7;
}

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

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

.container {
    max-width: 1200px;
}


/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;

    color: var(--primary);

    font-weight: 600;

    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
}


/* =========================================================
   4. NAVBAR
   ========================================================= */

.navbar {
    background: rgba(253, 251, 251, 0.96) !important;

    padding: 18px 0;

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

    transition: var(--transition);
}

.navbar-brand {
    color: var(--primary) !important;

    font-family: "Playfair Display", serif;

    font-size: 1.6rem;

    font-weight: 700;

    letter-spacing: 0.5px;
}

.navbar-brand span {
    color: var(--accent);
}

.navbar .nav-link {
    color: var(--text) !important;

    font-weight: 500;

    margin-left: 20px;

    position: relative;

    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.navbar .nav-link::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;

    bottom: 3px;

    height: 2px;

    background: var(--accent);

    transform: scaleX(0);

    transform-origin: center;

    transition: var(--transition);
}

.navbar .nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {
    border-radius: 50px;

    padding: 12px 25px;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary,
.btn-dark {
    background: var(--primary) !important;

    border-color: var(--primary) !important;

    color: var(--white) !important;
}

.btn-primary:hover,
.btn-dark:hover {
    background: var(--accent) !important;

    border-color: var(--accent) !important;

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

.btn-outline-dark {
    color: var(--primary);

    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: white;
}


/* =========================================================
   6. HERO SECTION
   ========================================================= */

.hero {
    min-height: 82vh;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(40, 8, 9, 0.88),
            rgba(94, 23, 24, 0.45),
            rgba(0, 0, 0, 0.15)
        ),
        url("https://img.magnific.com/free-photo/woman-hand-holding-camera-standing-top-rock-nature-travel-concept_335224-887.jpg?semt=ais_hybrid&w=740&q=80")
        center / cover no-repeat;
}

.hero-content {
    max-width: 760px;

    padding: 80px 0;
}

.hero-content span {
    display: inline-block;

    color: #F5D8D5;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.hero h1 {
    color: white;

    margin-bottom: 25px;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);

    font-size: 1.15rem;

    max-width: 620px;

    margin-bottom: 35px;
}

.hero .btn {
    padding: 14px 30px;
}


/* =========================================================
   7. SECTION SPACING
   ========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading span {
    color: var(--accent);

    font-size: 0.8rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2.5px;
}

.section-heading h1,
.section-heading h2 {
    margin-top: 10px;

    margin-bottom: 15px;
}

.section-heading p {
    max-width: 650px;

    margin-bottom: 0;
}


/* =========================================================
   8. HOTEL CARDS
   ========================================================= */

.hotel-card {
    background: var(--white);

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

    border-radius: var(--radius-lg);

    overflow: hidden;

    height: 100%;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.hotel-card img {
    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.hotel-card:hover img {
    transform: scale(1.04);
}

.hotel-card-content {
    padding: 25px;
}

.hotel-card h3 {
    margin-bottom: 8px;
}

.hotel-location {
    color: var(--text-light);

    font-size: 0.9rem;
}

.hotel-price {
    color: var(--primary);

    font-size: 1.2rem;

    font-weight: 700;
}

.hotel-rating {
    color: var(--accent);

    font-weight: 600;
}


/* =========================================================
   9. PACKAGE CARDS
   ========================================================= */

.package-card {
    background: var(--white);

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

    border-radius: var(--radius-lg);

    overflow: hidden;

    height: 100%;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.package-card img {
    width: 100%;

    height: 240px;

    object-fit: cover;
}

.package-content {
    padding: 28px;
}

.package-content h3 {
    margin-bottom: 12px;
}

.package-price {
    color: var(--primary);

    font-size: 1.3rem;

    font-weight: 700;
}

.package-duration {
    color: var(--accent);

    font-weight: 600;

    font-size: 0.9rem;
}


/* =========================================================
   10. FEATURED BADGE
   ========================================================= */

.badge-featured {
    display: inline-block;

    background: var(--primary);

    color: white;

    padding: 6px 13px;

    border-radius: 50px;

    font-size: 0.75rem;

    font-weight: 600;
}


/* =========================================================
   11. WHY FRIDAY RETREATS
   ========================================================= */

.why-section {
    background: var(--cream);

    border-radius: 40px;

    margin: 40px auto;

    max-width: 1200px;
}

.why-card {
    background: transparent;

    padding: 25px;
}

.why-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    font-size: 1.4rem;

    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 10px;
}


/* =========================================================
   12. CTA SECTION
   ========================================================= */

.cta-section {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

    color: white;

    border-radius: 35px;

    padding: 70px 50px;

    margin: 80px auto;

    max-width: 1150px;

    text-align: center;

    box-shadow: var(--shadow-lg);
}

.cta-section h2 {
    color: white;

    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);

    max-width: 600px;

    margin: 0 auto 30px;
}

.cta-section .btn {
    background: white !important;

    color: var(--primary) !important;

    border-color: white !important;
}

.cta-section .btn:hover {
    background: var(--cream) !important;
}


/* =========================================================
   13. HOTEL DETAIL PAGE
   ========================================================= */

.hotel-detail {
    padding: 80px 0;
}

.hotel-detail-image {
    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.hotel-detail-image img {
    width: 100%;

    max-height: 550px;

    object-fit: cover;
}

.hotel-detail-info {
    padding: 20px 0 20px 30px;
}

.hotel-detail-info h1 {
    margin-bottom: 15px;
}

.hotel-detail-price {
    color: var(--primary);

    font-size: 1.7rem;

    font-weight: 700;
}


/* =========================================================
   14. IMAGE GALLERY
   ========================================================= */

.gallery {
    display: grid;

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

    gap: 15px;
}

.gallery img {
    width: 100%;

    height: 250px;

    object-fit: cover;

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.gallery img:hover {
    transform: scale(1.02);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   15. ENQUIRY FORM
   ========================================================= */

.enquiry-form {
    background: white;

    padding: 45px;

    border-radius: var(--radius-lg);

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

    box-shadow: var(--shadow-md);
}

.enquiry-form label {
    color: var(--primary);

    font-weight: 600;

    margin-bottom: 7px;
}

.form-control,
.form-select {
    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 13px 15px;

    background: var(--background);

    color: var(--text);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);

    box-shadow: 0 0 0 3px rgba(133, 42, 40, 0.12);
}

textarea.form-control {
    resize: vertical;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

footer {
    background: var(--primary);

    color: white;

    padding: 70px 0 25px;

    margin-top: 80px;
}

footer h3,
footer h4 {
    color: white;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

footer a {
    color: rgba(255, 255, 255, 0.8);

    transition: var(--transition);
}

footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    margin-top: 40px;

    padding-top: 20px;

    text-align: center;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.85rem;
}


/* =========================================================
   17. EMPTY STATES
   ========================================================= */

.empty-state {
    background: var(--cream);

    padding: 50px;

    border-radius: var(--radius-lg);

    text-align: center;
}


/* =========================================================
   18. ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.8s ease forwards;
}


/* =========================================================
   19. MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .navbar .nav-link {
        margin-left: 0;

        padding: 12px 0;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 75vh;
    }

    .section-padding {
        padding: 75px 0;
    }

    .hotel-detail-info {
        padding: 30px 0 0;
    }

}


@media (max-width: 767px) {

    .navbar {
        padding: 14px 0;
    }

    .navbar-brand {
        font-size: 1.35rem;
    }

    .hero {
        min-height: 80vh;

        background:
            linear-gradient(
                rgba(40, 8, 9, 0.72),
                rgba(94, 23, 24, 0.72)
            ),
            url("/static/images/hero.jpg")
            center / cover no-repeat;
    }

    .hero-content {
        padding: 50px 0;
    }

    .hero h1 em {
    color: #f2d5d2;
    font-style: normal;
}

    .hero-label {
    display: inline-block;
    color: #f2d5d2;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

    .hero p {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .why-section {
        margin: 20px 15px;

        border-radius: 25px;
    }

    .cta-section {
        margin: 50px 15px;

        padding: 50px 25px;

        border-radius: 25px;
    }

    .enquiry-form {
        padding: 25px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 220px;
    }

}


/* =========================================================
   20. SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

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

    .hero .btn {
        width: 100%;
    }

    .hotel-card img {
        height: 220px;
    }

    .package-card img {
        height: 210px;
    }

}




.package-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.package-image-placeholder {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--text-light);
}