/* =========================================================
   HOME PAGE MAIN CSS
   Project : Homepage UI
   Author  : Bikesh Kumar Gupta
   Version : 1.0
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    --figma-orange: #FF4D00;
    --figma-yellow: #FFB800;

    --primary-dark: #1D1D1D;
    --secondary-text: #495A69;

    --light-bg: #FDF8F0;
    --white-color: #FFFFFF;

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    --transition: all 0.3s ease;
}


/* =========================================================
   2. HERO BANNER SECTION
========================================================= */

/* -----------------------------------------
   Main Hero Wrapper
----------------------------------------- */

.hero-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #000;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}


/* -----------------------------------------
   Hero Background
----------------------------------------- */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* -----------------------------------------
   Video Poster Image
----------------------------------------- */

#video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background: url('/wp-content/uploads/2026/05/hero-banner-1-scaled.webp') center/cover no-repeat;

    z-index: 5;
    transition: opacity 1s ease;
}

.video-playing #video-poster {
    opacity: 0;
    visibility: visible;
}


/* -----------------------------------------
   Hero Video
----------------------------------------- */

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 115vw;
    height: 64.68vw;

    min-height: 115vh;
    min-width: 204.44vh;

    transform: translate(-50%, -50%);

    z-index: 2;
    pointer-events: none;
}


/* -----------------------------------------
   Dark Overlay
----------------------------------------- */

.overlay {
    position: absolute;
    inset: 0;

    z-index: 4;

    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.4) 100%
    );
}


/* -----------------------------------------
   Hero Content Container
----------------------------------------- */

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    /*max-width: 1440px;*/
    padding-bottom: 80px;
    transition: opacity 0.8s ease,
                visibility 0.8s ease;
}

@media (min-width: 1600px) {
    .hero-container {
        max-width: 1440px !important;
    }
}

/*.video-playing .hero-container {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/


/* -----------------------------------------
   Hero Heading
----------------------------------------- */

.hero-section h1 {
    color: #fff;

    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -0.02em;

    margin-bottom: 15px;
}


/* -----------------------------------------
   Hero Paragraph
----------------------------------------- */

.hero-section p {
    color: rgba(255, 255, 255, 0.8);

    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;

    max-width: 500px;

    margin-bottom: 35px;
}


/* -----------------------------------------
   Hero Buttons
----------------------------------------- */

.btn-group-custom {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main {
    padding: 14px 40px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    display: inline-block;

    transition: var(--transition);
}


/* Primary Button */

.btn-orange {
    background: linear-gradient(
        90deg,
        var(--figma-orange) 0%,
        var(--figma-yellow) 100%
    );

    color: #fff;
    border: none;
}

.btn-orange:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);

    color: #fff;
}


/* Outline Button */

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);

    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}


/* -----------------------------------------
   Media Controls
----------------------------------------- */

.media-controls {
    position: absolute;

    right: 40px;
    bottom: 80px;

    z-index: 20;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.control-circle {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid var(--glass-border);

    background: var(--glass-bg);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    cursor: pointer;

    transition: var(--transition);
}

.control-circle:hover {
    background: rgba(255,255,255,0.2);
}


/* -----------------------------------------
   Responsive CSS - Hero Section
----------------------------------------- */

@media (max-width: 768px) {

    .hero-container {
        padding-bottom: 60px;
        text-align: left;
    }

    .media-controls {
        top: 35%;
        right: 35%;
        bottom: auto;

        flex-direction: row;
    }

    .btn-group-custom {
        flex-direction: column;
        width: 100%;
    }

    .btn-main {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 600px; /* keep same as requested */
    }
}


/* =========================================================
   3. COMPANY OVERVIEW SECTION
========================================================= */

.company-overview {
    background-color: var(--light-bg);
    overflow: hidden;
}


/* -----------------------------------------
   Shared Section Header
----------------------------------------- */

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.section-line {
    width: 100px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #E63946 0%,
        #FFB703 100%
    );
}

.section-title {
    font-family: 'Inter', sans-serif;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: #212529;
}


/* -----------------------------------------
   Overview Content
----------------------------------------- */

.overview-text {
    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;

    color: #212529;

    margin-bottom: 60px;
}


/* -----------------------------------------
   Statistics Row
----------------------------------------- */

.custom-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    flex-wrap: nowrap;

    gap: 20px;
}

.stat-item {
    flex: 1;
}

.stat-item .stat-number {
    display: flex;
    align-items: baseline;

    font-size: 56px;
    font-weight: 700;
    line-height: 1;

    margin-bottom: 15px;

    background: linear-gradient(
        90deg,
        #E63946 0%,
        #FFB703 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #212529;
    white-space: nowrap;
}


/* Share Price Text */

.share-price-green {
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-left: 10px !important;
    color: #2D6A4F !important;
    -webkit-text-fill-color: #2D6A4F !important;
}

.share-price-red {
    color: #e74c3c !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-left: 10px !important;
    -webkit-text-fill-color: #e74c3c !important;
}


/* Circle Badge */

.circle-badge-container {
    flex: 0 0 auto;
}

.circle-badge {
    width: 160px;
    height: 160px;

    border-radius: 50%;

    object-fit: contain;
}


/* -----------------------------------------
   Responsive CSS - Company Overview
----------------------------------------- */

@media (max-width: 1200px) {

    .custom-stats-row {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 30%;
        margin-bottom: 40px;
    }

    .overview-text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .overview-text {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .stat-item {
        flex: 0 0 45%;
        text-align: center;
    }

    .stat-item .stat-number {
        justify-content: center;
        font-size: 36px;
    }

    .circle-badge-container {
        width: 100%;

        display: flex;
        justify-content: center;
    }

    .circle-badge {
        width: 120px;
        height: 120px;
    }
}


/* =========================================================
   4. BRAND SLIDER SECTION
========================================================= */

.our-brands-section {
    background-color: var(--light-bg);
    overflow: hidden;
    padding-bottom: 80px;
}


/* -----------------------------------------
   Brand Heading
----------------------------------------- */

.brand-header-text {
    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 36px;
    font-weight: 700;

    color: #212529;

    margin-bottom: 50px;
}


/* -----------------------------------------
   Brand Content
----------------------------------------- */

.brand-display-title {
    font-size: 24px;
    font-weight: 800;

    margin-bottom: 20px;
}

.brand-description {
    max-width: 400px;

    font-size: 16px;
    line-height: 1.6;

    color: #666;

    margin-bottom: 30px;
}


/* -----------------------------------------
   Discover Button
----------------------------------------- */

.btn-discover-wrap {
    display: inline-block;

    text-decoration: none !important;

    background: linear-gradient(
        90deg,
        #E63946 0%,
        #FFB703 100%
    );

    padding: 2px;
    border-radius: 50px;

    transition: transform 0.3s ease;
}

.btn-discover-wrap:hover {
    transform: translateY(-2px);
}

.btn-discover-inner {
    display: block;

    padding: 10px 35px;
    border-radius: 50px;

    background: var(--light-bg);

    color: #212529;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;
}


/* -----------------------------------------
   Explore Link
----------------------------------------- */

.explore-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    font-size: 16px;
    font-weight: 700;

    color: #212529;

    text-decoration: none !important;
}


/* -----------------------------------------
   Brand Image
----------------------------------------- */

.brand-image-wrapper img {
    width: 100%;
    max-width: 450px;
    max-height: 500px;

    object-fit: contain;
}

@media (max-width: 768px) {

.brand-image-wrapper img {
    width: 100%;
    max-width: 450px;
    max-height: 250px;
    object-fit: contain;
}
}




/* -----------------------------------------
   Slider Controls
----------------------------------------- */

.slider-controls-container {
    margin-top: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.swiper-progress-container {
    position: relative;

    flex-grow: 1;
    height: 3px;

    background: #EEDDCC;
}

.swiper-progress-bar {
    position: absolute;

    height: 100%;
    background: #E63946;

    transition: width 0.4s ease;
}


/* Navigation Buttons */

.nav-buttons {
    display: flex;
    gap: 15px;
}

.brand-nav-btn {
    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0,0,0,0.06);

    transition: var(--transition);
}

.brand-nav-btn:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.brand-nav-btn svg {
    width: 20px;
    height: 20px;
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


/* -----------------------------------------
   Responsive CSS - Brand Slider
----------------------------------------- */

@media (max-width: 991px) {

    .brand-row {
        text-align: center;
    }

    .mobile-order-1 {
        order: 1;
    }

    .mobile-order-2 {
        order: 2;
        margin: 40px 0;
    }

    .mobile-order-3 {
        order: 3;
    }

    .brand-description {
        margin: 0 auto 30px auto;
    }

    .explore-link {
        justify-content: center;
    }

    .slider-controls-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .swiper-progress-container {
        width: 100%;
    }

    .brand-header-text {
        text-align: center !important;
    }
}


/* =========================================================
   5. INVESTORS SECTION
========================================================= */

.investors-section {
    background-color: #F5E2D2;
    padding: 80px 0;
}

.commitments-section {
    background-color: #fff;
    padding: 80px 0;
}


/* -----------------------------------------
   Investors Content
----------------------------------------- */

.investor-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 48px;
    font-weight: 800;

    color: #212529;

    margin-bottom: 20px;
}

.investor-description {
    /*max-width: 550px;*/

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 18px;
    line-height: 1.6;

    color: #666;

    margin-bottom: 40px;
}


/* -----------------------------------------
   Investors Image
----------------------------------------- */

.investor-image-container img {
    width: 100%;
    border-radius: 12px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


/* -----------------------------------------
   Responsive CSS - Investors Section
----------------------------------------- */

@media (max-width: 991px) {

    .investors-section {
        text-align: center;
        padding: 60px 0;
    }

    .section-header {
        justify-content: center;
    }

    .investor-heading {
        font-size: 32px;
    }

    .investor-description {
        margin: 0 auto 30px auto;
    }

    .investor-image-container {
        margin-bottom: 50px;
    }
}


/* =========================================================
   6. COMMITMENTS SECTION
========================================================= */

/* -----------------------------------------
   Responsive CSS - Commitments
----------------------------------------- */

@media (max-width: 991px) {

    .commitments-image-container {
        margin-top: 50px !important;
        margin-bottom: 0 !important;
    }

    .commitments-heading,
    .commitments-description {
        text-align: center !important;
    }

    .btn-discover-wrap {
        width: 100% !important;
        text-align: center !important;
    }
}


/* =========================================================
   7. NEWS SECTION
========================================================= */

.news-section {
    background-color: var(--light-bg);
    padding: 40px 0;
}


/* -----------------------------------------
   News Section Content
----------------------------------------- */

.news-subtext {
    max-width: 700px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 16px;

    color: #666;

    margin-bottom: 50px;
}


/* -----------------------------------------
   News Card
----------------------------------------- */

.news-card {
    border: none;
    background: transparent;

    margin-bottom: 30px;

    transition: transform 0.3s ease;

    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
}


/* News Image */

.news-card-img {
    width: 100%;
    height: 250px;

    object-fit: cover;

    border-radius: 20px;

    margin-bottom: 20px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


/* News Title */

.news-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;

    color: #212529;

    margin-bottom: 12px;
}


/* News Description */

.news-card-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 14px;
    line-height: 1.6;

    color: #666;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* News Link */

.news-card-link {
    display: block;

    color: inherit;

    text-decoration: none !important;
}

.news-card-link:hover .news-card-title {
    color: #E63946;
}


/* News Button */

.news-btn-container {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}


/* -----------------------------------------
   Responsive CSS - News Section
----------------------------------------- */

@media (max-width: 767px) {

    .news-section {
        padding: 50px 0;
    }

    .news-card-img {
        height: 200px;
    }

    .news-card-title {
        font-size: 18px;
    }
}


/* =========================================================
   8. BREADCRUMB SECTION
========================================================= */

.custom-breadcrumb-container {
    background-color: var(--light-bg);
    padding-top: 100px;
}


/* Breadcrumb List */

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;

    list-style: none;

    padding: 0;
    margin: 0;
}


/* Breadcrumb Item */

.breadcrumb-item,
.breadcrumb-item a {
    font-family: 'Inter', sans-serif;

    font-size: 12px;;

    letter-spacing: 0.02em;

    text-decoration: none !important;

    transition: color 0.3s ease;
}


/* Active Breadcrumb */

.breadcrumb-item.active {
    font-weight: 500;
    line-height: 130%;

    color: var(--primary-dark);
}


/* Breadcrumb Link */

.breadcrumb-item a {
    font-weight: 400;
    line-height: 150%;

    color: var(--secondary-text);
}

.breadcrumb-item a:hover {
    color: #E63946;
}


/* Separator */

.breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.7;
}


/* -----------------------------------------
   Responsive CSS - Breadcrumb
----------------------------------------- */

@media (max-width: 768px) {

    .custom-breadcrumb-container {
        padding: 15px 0;
        padding-top: 100px;
    }

    .breadcrumb-list {
        gap: 8px;
    }
}


/* =========================================================
   9. FOUNDATION SECTION
========================================================= */

.foundation-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}


/* -----------------------------------------
   Foundation Heading
----------------------------------------- */

.foundation-heading {
    max-width: 1200px;

    font-family: 'Inter', sans-serif;

    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;

    color: var(--primary-dark);
}


/* -----------------------------------------
   Foundation Item
----------------------------------------- */

.foundation-item {
    cursor: pointer;

    transition: background-color 0.3s ease;
}

.foundation-item:hover {
    background-color: rgba(0,0,0,0.01);
}


/* Foundation Number */

.foundation-number {
    padding-top: 6px;

    font-family: 'Inter', sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: var(--primary-dark);
}


/* Foundation Title */

.foundation-title {
    margin: 0;

    font-family: 'Inter', sans-serif;

    font-size: 24px;
    font-weight: 700;

    color: var(--primary-dark);
}


/* Foundation Description */

.foundation-text {
    max-width: 700px;

    font-family: 'Inter', sans-serif;

    font-size: 16px;
    line-height: 1.6;

    color: var(--secondary-text);
}


/* Foundation Icon */

.foundation-icon svg {
    color: var(--primary-dark);

    transition: var(--transition);
}


/* Utility Border */

.border-bottom {
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}


/* -----------------------------------------
   Responsive CSS - Foundation
----------------------------------------- */

@media (max-width: 768px) {

    .foundation-heading {
        font-size: 28px;
    }

    .foundation-title {
        font-size: 20px;
    }
}


/* =========================================================
   10. COMMUNITY / COMMITMENTS CARD SECTION
========================================================= */

.community-grid-item-card {
    height: 100%;

    padding: 30px 35px;
    border-radius: 12px;

    background-color: #fff;

    border: 1px solid rgba(0,0,0,0.005);

    box-shadow: 0 4px 20px rgba(0,0,0,0.02);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.community-grid-item-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}


/* -----------------------------------------
   Card Meta
----------------------------------------- */

.card-meta-timeline {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;
}

.meta-icon-calendar {
    display: inline-flex;
    align-items: center;
}

.meta-date-label {
    font-family: 'Inter', sans-serif;

    font-size: 13px;
    font-weight: 500;

    color: #7A869A;
}


/* -----------------------------------------
   Card Heading
----------------------------------------- */

.community-card-headline {
    margin-bottom: 24px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;

    color: #111111;

    text-align: left;
}


/* -----------------------------------------
   Card Action Link
----------------------------------------- */

.btn-card-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: auto;

    font-family: 'Inter', sans-serif;

    font-size: 13px;
    font-weight: 700;

    color: #0080FF !important;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    text-decoration: none !important;

    transition: gap 0.2s ease;
}

.btn-card-action-link:hover {
    gap: 10px;
}


/* =========================================================
   11. DESKTOP ONLY UTILITIES
========================================================= */

@media (min-width: 992px) {

    .carrer-at-himalayan-distillery {
        float: right !important;
    }
}


/* Custom Grievance Layout Overrides */
/* Core Structural Layout Configurations */
.grievance-officer-section {
    width: 100%;
    position: relative;
}

.grievance-section-title {
    color: #222222 !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin: 0;
    text-align: left;
}

.grievance-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.officer-img-box {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 16px !important;
    overflow: hidden;
    background-color: #EAE8F8;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07) !important;
    margin-bottom: 24px;
}

.officer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.officer-name-heading {
    color: #111111 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1px;
    margin-bottom: 6px !important;
}

.officer-role-subtext {
    color: #555555 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}

.officer-meta-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.officer-meta-links .meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #333333 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.officer-meta-links .ext-row {
    margin-top: -4px;
    padding-left: 24px; /* Keeps Extension aligned beautifully right under the Phone text */
}

/* Image Icon Optimization */
.meta-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}


.text-link {
    transition: color 0.2s ease;
}

.email-link-row:hover .text-link {
    color: #ED1C24 !important;
}