/* =========================================================
   DOLPHIN HOTEL VIZAG
   PREMIUM BOOTSTRAP 5 STYLESHEET
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --navy: #071b2d;
    --navy-light: #102b42;
    --gold: #c9a227;
    --gold-light: #e1c45b;
    --white: #ffffff;
    --black: #111111;
    --text: #555555;
    --muted: #888888;
    --border: #e7e7e7;
    --light: #f7f7f5;

    --heading-font: "Cormorant Garamond", Georgia, serif;
    --body-font: "Montserrat", Arial, sans-serif;

    --transition: all 0.35s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    font-size: 13px;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: #fff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #eeeeee;
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    min-height: 34px;
    display: flex;
    align-items: center;
    font-size: 9px;
    letter-spacing: 0.7px;
    position: relative;
    z-index: 1100;
}

.top-bar i {
    color: var(--gold-light);
    margin-right: 4px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1050;

    background: rgba(255, 255, 255, 0.96);

    transition: var(--transition);
}

.main-header.header-scrolled {
    position: fixed;
    top: 0;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.main-header .navbar {
    min-height: 78px;
}


/* =========================================================
   LOGO
========================================================= */

.navbar-brand {
    padding: 0;
}

.hotel-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
}

.logo-symbol {
    width: 37px;
    height: 37px;

    border: 1px solid var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;

    color: var(--gold);

    transform: rotate(45deg);
}

.logo-symbol::first-letter {
    transform: rotate(-45deg);
}

.logo-name {
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 1px;
}

.logo-name span {
    display: block;
    font-family: var(--body-font);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: 6px;
    color: var(--gold);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-header .navbar-nav {
    gap: 2px;
}

.main-header .nav-link {
    color: #333333;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    padding: 30px 12px !important;

    position: relative;
}

.main-header .nav-link::after {
    content: "";

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 20px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--gold);
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   BOOK NOW
========================================================= */

.book-now-btn {
    background: var(--navy);
    color: #fff;

    border-radius: 0;

    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 600;

    padding: 12px 22px;

    border: 1px solid var(--navy);
}

.book-now-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}


/* =========================================================
   MOBILE NAV TOGGLER
========================================================= */

.navbar-toggler {
    border: 1px solid var(--navy);
    border-radius: 0;
    padding: 7px 9px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--navy);
}

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 31, 0.78),
            rgba(4, 18, 31, 0.25),
            rgba(4, 18, 31, 0.42)
        );

    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}

.hero-content {
    max-width: 590px;

    color: #fff;

    padding-bottom: 120px;
}

.hero-small-title {
    display: inline-block;

    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;

    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: var(--heading-font);

    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.92;

    font-weight: 500;

    margin-bottom: 24px;

    color: #fff;
}

.hero-content p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 12px;

    margin-bottom: 28px;
}

.hero-btn {
    border: 1px solid var(--gold);

    background: var(--gold);

    color: #fff;

    border-radius: 0;

    padding: 13px 26px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero-btn:hover {
    background: transparent;
    color: #fff;
}


/* =========================================================
   ENQUIRY WRAPPER
========================================================= */

.hero-enquiry-wrapper {
    position: absolute;

    left: 0;
    bottom: 25px;

    width: 100%;

    z-index: 5;
}

.enquiry-box {
    background: rgba(7, 27, 45, 0.96);

    border: 1px solid rgba(255, 255, 255, 0.16);

    padding: 17px 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.enquiry-heading {
    display: none;
}

.enquiry-box label {
    display: block;

    color: rgba(255, 255, 255, 0.75);

    font-size: 8px;
    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.enquiry-box .input-group {
    height: 40px;
}

.enquiry-box .input-group-text {
    background: #fff;

    border: none;

    border-right: 1px solid #eeeeee;

    border-radius: 0;

    color: var(--gold);

    font-size: 13px;
}

.enquiry-box .form-control,
.enquiry-box .form-select {
    border: none;

    border-radius: 0;

    font-size: 10px;

    color: #333;

    box-shadow: none;
}

.enquiry-box .form-control::placeholder {
    color: #999;
}

.enquiry-box .form-control:focus,
.enquiry-box .form-select:focus {
    box-shadow: none;
}

.whatsapp-btn {
    height: 40px;

    padding: 0 20px;

    border-radius: 0;

    border: 1px solid #25d366;

    background: #25d366;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.8px;

    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #1ebc5b;

    border-color: #1ebc5b;

    color: #fff;

    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 14px;

    margin-right: 5px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section-padding {
    padding: 90px 0;
}

.section-subtitle {
    color: var(--gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.section-title {
    font-family: var(--heading-font);

    color: var(--navy);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 500;

    line-height: 1.05;

    margin-bottom: 22px;
}


/* =========================================================
   AWARDS
========================================================= */

.awards-section {
    background: #fff;

    text-align: center;
}

.award-image {
    display: flex;

    align-items: center;
    justify-content: center;
}

.award-image img {
    max-height: 270px;

    width: auto;

    margin: auto;

    transition: var(--transition);
}

.award-image img:hover {
    transform: scale(1.03);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.about-content {
    max-width: 950px;
}

.about-content p:not(.section-subtitle) {
    color: #666;

    font-size: 12px;

    line-height: 2;

    margin-bottom: 18px;
}

.about-content .section-title {
    margin-bottom: 35px;
}


/* =========================================================
   HOTEL GALLERY
========================================================= */

.hotel-gallery {
    padding: 25px 0 90px;
}

.gallery-grid {
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.25fr 1fr 1fr;

    grid-template-rows: 210px 150px;

    gap: 8px;
}

.gallery-item {
    overflow: hidden;

    position: relative;

    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(15%);

    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-large {
    grid-row: span 2;
}


/* =========================================================
   FEATURE SECTIONS
========================================================= */

.feature-section {
    background: #fff;
}

.feature-section.bg-light {
    background: var(--light) !important;
}

.feature-content {
    max-width: 480px;

    margin: auto;
}

.feature-title {
    font-family: var(--heading-font);

    color: var(--navy);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 0.98;

    font-weight: 500;

    margin-bottom: 24px;
}

.feature-content p {
    font-size: 11px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 16px;
}

.feature-image-wrap {
    overflow: hidden;

    position: relative;
}

.feature-image {
    width: 100%;

    min-height: 410px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.feature-image-wrap:hover .feature-image {
    transform: scale(1.025);
}


/* =========================================================
   DARK BUTTON
========================================================= */

.dark-btn {
    background: var(--navy);

    color: #fff;

    border: 1px solid var(--navy);

    border-radius: 0;

    padding: 11px 22px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.2px;

    margin-top: 8px;
}

.dark-btn:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #fff;
}


/* =========================================================
   FACILITIES
========================================================= */

.facilities-section {
    text-align: center;
}

.facility-card {
    padding: 20px 10px;

    transition: var(--transition);
}

.facility-icon {
    width: 58px;
    height: 58px;

    border: 1px solid #ddd;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    color: var(--gold);

    font-size: 21px;

    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: var(--navy);

    border-color: var(--navy);

    color: #fff;

    transform: translateY(-5px);
}

.facility-card h5 {
    color: var(--navy);

    font-family: var(--heading-font);

    font-size: 17px;

    font-weight: 500;

    margin: 0;
}


/* =========================================================
   ATTRACTIONS
========================================================= */

.attractions-section {
    background: #fff;
}

.attraction-card {
    overflow: hidden;

    position: relative;

    background: #eee;

    height: 270px;
}

.attraction-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.attraction-card:hover img {
    transform: scale(1.08);
}

.attraction-title {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 16px 13px 13px;

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.5px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.8)
    );
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {
    background: var(--light) !important;
}

.testimonial-card {
    height: 100%;

    background: #fff;

    border: 1px solid #eeeeee;

    padding: 32px 28px;

    text-align: center;

    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--gold);

    font-size: 13px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.testimonial-card p {
    font-family: var(--heading-font);

    color: #555;

    font-size: 19px;

    line-height: 1.35;

    font-style: italic;

    margin-bottom: 20px;
}

.testimonial-card h6 {
    color: var(--navy);

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: #fff;
}

.contact-description {
    font-size: 12px;

    line-height: 1.9;

    max-width: 500px;

    margin-bottom: 30px;
}

.contact-item {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}

.contact-item > i {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);
}

.contact-item strong {
    display: block;

    color: var(--navy);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 2px;
}

.contact-item span {
    display: block;

    color: #777;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {
    background: var(--navy);

    color: #fff;

    padding: 60px;

    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    position: relative;

    overflow: hidden;
}

.contact-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(201, 162, 39, 0.25);

    border-radius: 50%;

    right: -100px;
    top: -100px;
}

.contact-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(201, 162, 39, 0.18);

    border-radius: 50%;

    right: -45px;
    top: -45px;
}

.contact-card > * {
    position: relative;
    z-index: 2;
}

.contact-card-small {
    color: var(--gold-light);

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 600;

    margin-bottom: 10px;
}

.contact-card h3 {
    font-family: var(--heading-font);

    font-size: 48px;

    font-weight: 500;

    line-height: 1;

    margin-bottom: 15px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    max-width: 500px;

    margin-bottom: 25px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer-section {
    background: var(--navy);

    color: rgba(255, 255, 255, 0.68);

    padding: 65px 0 20px;

    font-size: 10px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    font-family: var(--heading-font);

    font-size: 24px;

    font-weight: 600;

    margin-bottom: 20px;
}

.footer-logo-symbol {
    width: 42px;
    height: 42px;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 25px;
}

.footer-logo span {
    display: block;

    color: var(--gold);

    font-family: var(--body-font);

    font-size: 7px;

    letter-spacing: 4px;

    margin-top: -2px;
}

.footer-section h6 {
    color: #fff;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 600;

    margin-bottom: 20px;
}

.footer-section > .container > .row a {
    display: block;

    color: rgba(255, 255, 255, 0.62);

    font-size: 9px;

    margin-bottom: 8px;
}

.footer-section > .container > .row a:hover {
    color: var(--gold-light);

    padding-left: 3px;
}

.footer-text {
    max-width: 290px;

    line-height: 1.8;
}

.footer-contact p {
    display: flex;

    gap: 9px;

    margin-bottom: 12px;

    line-height: 1.7;
}

.footer-contact i {
    color: var(--gold);

    font-size: 12px;

    margin-top: 2px;
}

.social-links {
    display: flex;

    gap: 7px;

    margin-top: 20px;
}

.social-links a {
    width: 30px;
    height: 30px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    display: flex !important;

    align-items: center;
    justify-content: center;

    padding: 0 !important;

    margin: 0 !important;

    color: #fff !important;

    font-size: 12px !important;
}

.social-links a:hover {
    background: var(--gold);

    border-color: var(--gold);

    padding-left: 0 !important;
}

.footer-section hr {
    border-color: rgba(255, 255, 255, 0.18);

    margin: 35px 0 18px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 8px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 53px;
    height: 53px;

    border-radius: 50%;

    background: #25d366;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;

    z-index: 9999;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.25);

    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    color: #fff;

    transform: scale(1.08);
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.45);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .main-header .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;

        font-size: 9px;
    }

    .main-header .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .book-now-btn {
        padding: 10px 15px;
    }

    .hero-section {
        min-height: 680px;
    }

    .enquiry-box {
        padding: 15px;
    }

}


@media (max-width: 991.98px) {

    /* TOP BAR */

    .top-bar {
        text-align: center;

        padding: 7px 0;

        font-size: 8px;
    }

    .top-bar .text-md-end {
        text-align: center !important;

        margin-top: 3px;
    }


    /* HEADER */

    .main-header {
        top: 48px;
    }

    .main-header.header-scrolled {
        top: 0;
    }

    .main-header .navbar {
        min-height: 68px;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .main-header .navbar-collapse {
        background: #fff;

        margin: 0 -12px;

        padding: 12px 20px 20px;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

    .main-header .navbar-nav {
        gap: 0;
    }

    .main-header .nav-link {
        padding: 11px 5px !important;

        border-bottom: 1px solid #eeeeee;

        font-size: 10px;
    }

    .main-header .nav-link::after {
        display: none;
    }

    .book-now-btn {
        display: inline-block;

        margin-top: 15px;
    }


    /* HERO */

    .hero-section {
        min-height: 850px;

        align-items: flex-start;
    }

    .hero-inner {
        padding-top: 170px;
    }

    .hero-content {
        padding-bottom: 280px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 9vw, 70px);
    }


    /* ENQUIRY */

    .hero-enquiry-wrapper {
        bottom: 20px;
    }

    .enquiry-box {
        padding: 20px;
    }

    .enquiry-heading {
        display: block;

        margin-bottom: 15px;
    }

    .enquiry-heading span {
        color: var(--gold-light);

        font-size: 8px;

        letter-spacing: 2px;
    }

    .enquiry-heading h3 {
        color: #fff;

        font-family: var(--heading-font);

        font-size: 28px;

        margin: 0;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 220px 160px 160px;
    }

    .gallery-large {
        grid-row: span 2;
    }


    /* FEATURE */

    .feature-content {
        max-width: 100%;
    }

    .feature-image {
        min-height: 350px;
    }


    /* CONTACT */

    .contact-card {
        padding: 45px;
    }

}


@media (max-width: 767.98px) {

    body {
        font-size: 12px;
    }

    .section-padding {
        padding: 65px 0;
    }


    /* TOP BAR */

    .top-bar .row > div:first-child {
        display: none;
    }

    .top-bar .text-md-end {
        margin: 0;

        font-size: 8px;
    }


    /* HEADER */

    .main-header {
        top: 30px;
    }

    .main-header .navbar {
        min-height: 62px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-symbol {
        width: 32px;
        height: 32px;

        font-size: 22px;
    }


    /* HERO */

    .hero-section {
        min-height: 930px;
    }

    .hero-inner {
        padding-top: 135px;
    }

    .hero-content {
        padding-bottom: 430px;
    }

    .hero-content h1 {
        font-size: 49px;

        line-height: 0.95;
    }

    .hero-content p {
        font-size: 10px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 18, 31, 0.76),
                rgba(4, 18, 31, 0.48)
            );
    }


    /* ENQUIRY */

    .hero-enquiry-wrapper {
        bottom: 12px;
    }

    .enquiry-box {
        padding: 17px;
    }

    .enquiry-box .input-group {
        height: 43px;
    }

    .enquiry-box .row {
        row-gap: 10px !important;
    }

    .whatsapp-btn {
        width: 100%;

        height: 45px;
    }


    /* AWARDS */

    .award-image img {
        max-height: 220px;
    }


    /* GALLERY */

    .hotel-gallery {
        padding-bottom: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            190px
            140px
            140px;
    }

    .gallery-large {
        grid-row: span 2;
    }


    /* FEATURES */

    .feature-section .row {
        row-gap: 35px !important;
    }

    .feature-section .feature-image-wrap {
        margin-top: 5px;
    }

    .feature-image {
        min-height: 280px;
    }

    .feature-title {
        font-size: 42px;
    }


    /* FACILITIES */

    .facility-card {
        padding: 10px 5px;
    }

    .facility-icon {
        width: 50px;
        height: 50px;
    }

    .facility-card h5 {
        font-size: 15px;
    }


    /* ATTRACTIONS */

    .attraction-card {
        height: 210px;
    }


    /* TESTIMONIAL */

    .testimonial-card p {
        font-size: 17px;
    }


    /* CONTACT */

    .contact-card {
        padding: 40px 28px;

        min-height: 280px;
    }

    .contact-card h3 {
        font-size: 40px;
    }


    /* FOOTER */

    .footer-section {
        padding-top: 50px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }


    /* WHATSAPP */

    .floating-whatsapp {
        width: 48px;
        height: 48px;

        right: 15px;
        bottom: 15px;

        font-size: 22px;
    }

}


@media (max-width: 575.98px) {

    .container,
    .container-fluid {
        --bs-gutter-x: 1.4rem;
    }


    /* HERO */

    .hero-section {
        min-height: 980px;
    }

    .hero-content {
        padding-bottom: 465px;
    }

    .hero-content h1 {
        font-size: 43px;
    }


    /* GALLERY */

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            170px
            120px
            120px;
    }


    /* CONTACT */

    .contact-item {
        gap: 10px;
    }

    .contact-item > i {
        width: 34px;
        height: 34px;
    }


    /* FOOTER */

    .footer-section .row {
        row-gap: 35px !important;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-section {
        min-height: 1010px;
    }

    .hero-content {
        padding-bottom: 490px;
    }

    .feature-title {
        font-size: 38px;
    }

    .contact-card h3 {
        font-size: 35px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


.hotel-logo-img {
    width: 150px;
    height: 60px;
    display: block;
    object-fit: contain;
}

@media (max-width: 767.98px) {

    .hotel-logo-img {
        width: 125px;
    }

}