﻿/*==================================================
            ABOUT PAGE
            HOTEL SWAGATAM
==================================================*/


/*==================================================
            COMMON
==================================================*/

.about-section,
.about-story,
.legacy-section,
.why-us,
.accommodation-section,
.facility-section,
.restaurant-about,
.banquet-about,
.value-section,
.about-cta {
    position: relative;
    padding: 100px 0;
}

.section-title {
    margin-bottom: 35px;
}

    .section-title span {
        color: #c79b3b;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 46px;
        font-weight: 700;
        line-height: 1.25;
        margin-top: 12px;
        color: #222;
    }

    .section-title p {
        color: #777;
        font-size: 17px;
    }


/*==================================================
            HERO
==================================================*/

.about-banner {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/about-banner.jpg') center center/cover;
}

    .about-banner .banner-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
    }

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .banner-content .sub-title {
        display: inline-block;
        padding: 8px 18px;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 50px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #d4af37;
        margin-bottom: 20px;
        font-size: 13px;
    }

    .banner-content h1 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .banner-content p {
        font-size: 18px;
        color: #ddd;
    }

    .banner-content i {
        margin: 0 10px;
        color: #d4af37;
    }


/*==================================================
            STORY
==================================================*/

.about-story {
    background: #fff;
}

.story-images {
    position: relative;
}

    .story-images .main-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,.12);
    }

.experience-card {
    position: absolute;
    right: -20px;
    bottom: 40px;
    width: 180px;
    background: #c79b3b;
    color: #fff;
    border-radius: 18px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,.20);
}

    .experience-card h2 {
        font-size: 52px;
        font-weight: 700;
        margin: 0;
    }

    .experience-card span {
        display: block;
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
    }

.about-story p {
    color: #666;
    font-size: 17px;
    line-height: 34px;
    margin-bottom: 25px;
}


/*==================================================
        STORY HIGHLIGHTS
==================================================*/

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 35px;
}

    .story-highlights div {
        background: #fafafa;
        padding: 18px 22px;
        border-radius: 12px;
        transition: .35s;
        font-weight: 600;
        color: #444;
    }

        .story-highlights div:hover {
            background: #c79b3b;
            color: #fff;
            transform: translateY(-6px);
        }

    .story-highlights i {
        color: #c79b3b;
        margin-right: 10px;
    }

    .story-highlights div:hover i {
        color: #fff;
    }


/*==================================================
        LEGACY
==================================================*/

.legacy-section {
    background: #f9f8f4;
}

.founder-image {
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0,0,0,.12);
}

.quote-icon {
    width: 90px;
    height: 90px;
    background: #c79b3b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
}

.legacy-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.legacy-section p {
    font-size: 17px;
    line-height: 34px;
    color: #666;
}


/*==================================================
        SIGNATURE
==================================================*/

.signature {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}

    .signature img {
        width: 150px;
    }

    .signature h4 {
        margin: 0;
        font-weight: 700;
    }

    .signature span {
        color: #888;
    }


/*==================================================
        IMAGE EFFECT
==================================================*/

.story-images img,
.founder-image {
    transition: .5s;
}

    .story-images:hover img,
    .founder-image:hover {
        transform: scale(1.02);
    }


/*==================================================
        FADE ANIMATION
==================================================*/

.about-story,
.legacy-section {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}


/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .about-banner {
        height: 380px;
    }

    .banner-content h1 {
        font-size: 46px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .story-images {
        margin-bottom: 60px;
    }

    .experience-card {
        right: 20px;
        bottom: -20px;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .signature {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:767px) {

    .about-banner {
        height: 320px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .about-story,
    .legacy-section {
        padding: 70px 0;
    }

    .experience-card {
        width: 140px;
        padding: 18px;
    }

        .experience-card h2 {
            font-size: 38px;
        }
}
/*==================================================
            WHY CHOOSE US
==================================================*/

.why-us {
    background: #ffffff;
}

    .why-us .section-title {
        margin-bottom: 60px;
    }

.why-box {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: .4s;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    height: 100%;
}

    .why-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: #c79b3b;
        transform: scaleX(0);
        transition: .4s;
    }

    .why-box:hover:before {
        transform: scaleX(1);
    }

    .why-box i {
        width: 85px;
        height: 85px;
        background: #fff7e7;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 25px;
        font-size: 34px;
        color: #c79b3b;
        transition: .4s;
    }

    .why-box h4 {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .why-box p {
        color: #666;
        line-height: 28px;
        margin: 0;
    }

    .why-box:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

        .why-box:hover i {
            background: #c79b3b;
            color: #fff;
            transform: rotateY(180deg);
        }

/*==================================================
        ACCOMMODATION
==================================================*/

.accommodation-section {
    background: #f8f8f8;
}

.accommodation-image {
    position: relative;
}

    .accommodation-image img {
        border-radius: 18px;
        box-shadow: 0 15px 50px rgba(0,0,0,.15);
    }

.floating-rating {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: #fff;
    border-radius: 15px;
    padding: 18px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    color: #c79b3b;
    font-size: 26px;
    font-weight: bold;
}

    .floating-rating span {
        display: block;
        color: #555;
        font-size: 15px;
        margin-top: 6px;
    }

.room-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

    .room-features div {
        background: #fff;
        padding: 16px 20px;
        border-radius: 12px;
        border-left: 4px solid #c79b3b;
        font-weight: 600;
        transition: .3s;
    }

        .room-features div:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(0,0,0,.08);
        }

    .room-features i {
        color: #c79b3b;
        margin-right: 10px;
    }

/*==================================================
        FACILITIES
==================================================*/

.facility-section {
    background: #fff;
}

.facility-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    transition: .4s;
    border: 1px solid #ececec;
    height: 100%;
}

    .facility-card i {
        font-size: 42px;
        color: #c79b3b;
        margin-bottom: 25px;
        transition: .4s;
    }

    .facility-card h4 {
        font-size: 21px;
        margin: 0;
        font-weight: 700;
    }

    .facility-card:hover {
        background: #c79b3b;
        color: #fff;
        transform: translateY(-12px);
    }

        .facility-card:hover i {
            color: #fff;
            transform: scale(1.2);
        }

/*==================================================
        BANQUET
==================================================*/

.banquet-about {
    position: relative;
    background: url('../images/banquet-bg.jpg') center center/cover;
    color: #fff;
}

    .banquet-about .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.65);
    }

    .banquet-about .container {
        position: relative;
        z-index: 2;
    }

    .banquet-about h2 {
        font-size: 46px;
        margin-bottom: 25px;
    }

    .banquet-about p {
        color: #ddd;
        line-height: 32px;
    }

    .banquet-about ul {
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

    .banquet-about li {
        padding: 10px 0;
        font-size: 17px;
    }

        .banquet-about li:before {
            content: "✓";
            color: #c79b3b;
            font-weight: bold;
            margin-right: 12px;
        }

    .banquet-about img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,.30);
    }

    .banquet-about .btn {
        padding: 14px 35px;
        border-radius: 50px;
        font-weight: 600;
    }

/*==================================================
        RESTAURANT
==================================================*/

.restaurant-about {
    background: #fafafa;
}

    .restaurant-about img {
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

.food-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

    .food-list span {
        background: #fff;
        padding: 12px 22px;
        border-radius: 40px;
        border: 1px solid #ddd;
        transition: .3s;
        font-weight: 600;
    }

        .food-list span:hover {
            background: #c79b3b;
            color: #fff;
            border-color: #c79b3b;
        }

/*==================================================
        IMAGE EFFECTS
==================================================*/

.accommodation-image img,
.restaurant-about img,
.banquet-about img {
    transition: .5s;
}

.accommodation-image:hover img,
.restaurant-about:hover img,
.banquet-about:hover img {
    transform: scale(1.03);
}

/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .room-features {
        grid-template-columns: 1fr;
    }

    .floating-rating {
        left: 20px;
        bottom: -20px;
    }

    .banquet-about h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .why-box {
        padding: 30px 20px;
    }

        .why-box i {
            width: 70px;
            height: 70px;
            font-size: 28px;
        }

    .room-features {
        margin-top: 25px;
    }

    .food-list {
        justify-content: center;
    }

    .facility-card {
        padding: 30px 20px;
    }
}
/*==================================================
                OUR VALUES
==================================================*/

.value-section {
    background: #ffffff;
    position: relative;
}

.value-box {
    background: #fff;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .4s;
    overflow: hidden;
    position: relative;
    height: 100%;
    margin-bottom: 30px;
}

    .value-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: #c79b3b;
        transform: scaleX(0);
        transition: .4s;
    }

    .value-box:hover::before {
        transform: scaleX(1);
    }

    .value-box i {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: #fff6df;
        color: #c79b3b;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-bottom: 25px;
        font-size: 38px;
        transition: .4s;
    }

    .value-box h4 {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .value-box p {
        color: #666;
        line-height: 30px;
    }

    .value-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0,0,0,.12);
    }

        .value-box:hover i {
            background: #c79b3b;
            color: #fff;
            transform: rotateY(180deg);
        }


/*==================================================
            CALL TO ACTION
==================================================*/

.about-cta {
    position: relative;
    background: url('../images/about-cta.jpg') center center/cover;
    color: #fff;
    overflow: hidden;
}

    .about-cta .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.70);
    }

    .about-cta .container {
        position: relative;
        z-index: 2;
    }

    .about-cta h2 {
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .about-cta p {
        max-width: 800px;
        margin: auto;
        color: #ddd;
        line-height: 34px;
        font-size: 18px;
        margin-bottom: 35px;
    }

    .about-cta .btn {
        padding: 16px 38px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 17px;
        transition: .35s;
    }

    .about-cta .btn-warning {
        background: #c79b3b;
        border: none;
    }

        .about-cta .btn-warning:hover {
            transform: translateY(-4px);
            background: #b98b2b;
        }

    .about-cta .btn-outline-light:hover {
        background: #fff;
        color: #222;
    }


/*==================================================
            HOTEL STATS
==================================================*/

.hotel-stats {
    background: #f8f8f8;
    padding: 90px 0;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

    .stat-card h2 {
        color: #c79b3b;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-card p {
        color: #777;
        margin: 0;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.10);
    }


/*==================================================
            BUTTONS
==================================================*/

.btn-gold {
    background: #c79b3b;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    transition: .3s;
    text-decoration: none;
}

    .btn-gold:hover {
        background: #b98b2b;
        color: #fff;
    }

.btn-outline-gold {
    border: 2px solid #c79b3b;
    color: #c79b3b;
    padding: 14px 34px;
    border-radius: 50px;
    transition: .3s;
    text-decoration: none;
}

    .btn-outline-gold:hover {
        background: #c79b3b;
        color: #fff;
    }


/*==================================================
            ANIMATIONS
==================================================*/

.fade-up {
    animation: fadeUp .8s ease both;
}

.fade-left {
    animation: fadeLeft .8s ease both;
}

.fade-right {
    animation: fadeRight .8s ease both;
}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {

    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.zoom-in {
    animation: zoomIn .8s ease;
}


/*==================================================
            IMAGE EFFECTS
==================================================*/

img {
    transition: .45s;
}

    img:hover {
        transform: scale(1.02);
    }


/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #c79b3b;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #efefef;
}


/*==================================================
            UTILITIES
==================================================*/

.bg-light-gold {
    background: #fff8eb;
}

.text-gold {
    color: #c79b3b;
}

.rounded-xl {
    border-radius: 20px;
}

.shadow-xl {
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .about-cta h2 {
        font-size: 38px;
    }

    .hotel-stats {
        padding: 70px 0;
    }

    .stat-card {
        padding: 30px;
    }
}

@media(max-width:768px) {

    .about-cta {
        padding: 80px 0;
    }

        .about-cta h2 {
            font-size: 30px;
        }

        .about-cta p {
            font-size: 16px;
            line-height: 28px;
        }

        .about-cta .btn {
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }

    .value-box {
        padding: 35px 25px;
    }

        .value-box i {
            width: 75px;
            height: 75px;
            font-size: 30px;
        }

    .stat-card h2 {
        font-size: 36px;
    }
}
/*==================================
    GROUP OF HOTELS
==================================*/

.group-hotels-section {
    padding: 90px 0;
    background: #f9f9f9;
}

.group-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

    .group-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

    .group-card i {
        font-size: 45px;
        color: #b58a2f;
        margin-bottom: 20px;
    }

    .group-card h4 {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .group-card p {
        color: #666;
        line-height: 1.8;
        margin: 0;
    }

    .group-card.active {
        background: #b58a2f;
        color: #fff;
    }

        .group-card.active i,
        .group-card.active h4,
        .group-card.active p {
            color: #fff;
        }

@media(max-width:768px) {

    .group-hotels-section {
        padding: 60px 0;
    }

    .group-card {
        margin-bottom: 25px;
    }
}
/*====================================
        LEGACY
====================================*/

.legacy-section {
    padding: 100px 0;
    background: #f8f6f2;
}

.legacy-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.quote-icon {
    font-size: 60px;
    color: #c8a25d;
    margin-bottom: 20px;
}

.legacy-subtitle {
    display: block;
    color: #b58a2f;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px;
}

.legacy-content h2 {
    font-size: 52px;
    margin-bottom: 30px;
    font-family: 'Playfair Display',serif;
    color: #222;
    line-height: 1.2;
}

.legacy-content p {
    font-size: 18px;
    line-height: 34px;
    color: #666;
    margin-bottom: 22px;
}

.legacy-sign {
    margin-top: 40px;
    display: inline-block;
    border-top: 2px solid #b58a2f;
    padding-top: 20px;
}

    .legacy-sign h4 {
        margin: 0;
        font-size: 26px;
    }

    .legacy-sign span {
        color: #888;
        letter-spacing: 2px;
    }

@media(max-width:768px) {

    .legacy-content h2 {
        font-size: 36px;
    }

    .legacy-content p {
        font-size: 16px;
        line-height: 30px;
    }
}