/* =========================================================
   HIMALACHALRIDE.COM
   Global Styles
   ========================================================= */

:root {
    --primary: #0f3d35;
    --primary-dark: #082a25;
    --accent: #d8a84e;
    --accent-light: #f1d28a;
    --dark: #17211f;
    --text: #34413e;
    --muted: #71807b;
    --light: #f7f5ef;
    --white: #ffffff;
    --border: rgba(15, 61, 53, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

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

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

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

.page-placeholder {
    min-height: 70vh;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 40px 20px;
}

.page-placeholder p {
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.page-placeholder h1 {
    color: var(--primary);
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1;
    margin-top: 12px;
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px 12px 13px;

    background: #25D366;
    color: #ffffff;

    text-decoration: none;

    border-radius: 999px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.floating-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.24);
}


.whatsapp-icon {
    width: 38px;
    height: 38px;

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

    background: rgba(255, 255, 255, 0.16);

    border-radius: 50%;
}


.whatsapp-icon svg {
    width: 21px;
    height: 21px;

    fill: currentColor;
}


.whatsapp-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}


.whatsapp-text strong {
    font-size: 13px;
    font-weight: 700;
}


.whatsapp-text small {
    margin-top: 3px;

    font-size: 10px;

    opacity: 0.9;
}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }


    .whatsapp-icon {
        width: 56px;
        height: 56px;

        background: transparent;
    }


    .whatsapp-icon svg {
        width: 27px;
        height: 27px;
    }


    .whatsapp-text {
        display: none;
    }

}

/* =========================================================
   HIMACHALRIDE LOGO
   ========================================================= */

/* =========================================================
   HIMACHALRIDE LOGO
   ========================================================= */

.brand-logo {
    display: block;
    width: 90px;
    height: auto;
    max-height: none;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand .brand-logo {
    width: 180px;
    max-height: none;
}


/* =========================================================
   MOBILE LOGO
   ========================================================= */

@media (max-width: 700px) {

    .brand-logo {
        width: 180px;
        max-height: none;
    }

    .footer-brand .brand-logo {
        width: 175px;
        max-height: none;
    }

}