/*
Theme Name: Homeland Ranjit Avenue
Theme URI: https://www.homelandranjitavenue.com
Author: DMM - Dev's Marketing Minds
Description: Custom WordPress theme converted from the original PHP-core Homeland Ranjit Avenue website. Includes home, about, contact, blog listing/single, virtual tour link, and AJAX chatbot.
Version: 1.0
Text Domain: ranjit-avenue
*/

:root {
    --primary-color: #6e0310;
    --secondary-color: white;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.page_wrapper {
    background: black;
    overflow: hidden;
}

main {
    height: auto;
    position: relative;
}

.bg-video-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vw;
    filter: brightness(0.9);
    z-index: 0;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* .ambient-glow-1 {
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: -10%;
    left: 10%;
    filter: blur(80px);
    pointer-events: none;
}

.ambient-glow-2 {
    position: absolute;
    width: clamp(350px, 60vw, 700px);
    height: clamp(350px, 60vw, 700px);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -10%;
    right: 5%;
    filter: blur(100px);
    pointer-events: none;
} */

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s ease;
    margin-bottom: 0px;
    background: black;
    padding: 5px clamp(20px, 5vw, 100px);
}

.brand-logo-link {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    width: clamp(80px, 10vw, 90px);
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    list-style: none;
}

.nav-link,
.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.6rem, 1.5vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 0px 4px;
    /* border-right: 2px solid; */
}

.nav-link:hover,
.nav-menu a:hover {
    color: #00d2ff;
}

.nav-link::after,
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00d2ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-menu a:hover::after {
    width: 100%;
}

#app-container {
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding: 20px 0;
    transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.7s ease-in-out, filter 0.8s;
    transform-origin: right;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    height:95vh;
    justify-content: center;
}

.badge2 {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    color: #ffffff;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.grain-text {
    color: white;
    background-size: 150px;
}

#app-container h1 {
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #87808017;
    color: #000000d6;
    opacity: 1;
    background-size: 400px 400px;
    position: relative;
}

p.description {
    color: #ffffff;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: clamp(30px, 5vh, 44px);
    font-weight: 400;
    padding: 0 10px;
}

.tour-btn {
    margin-top: 60%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(16px, 3vh, 20px) clamp(32px, 5vw, 44px);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #141419 0%, #09090b 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.tour-btn:hover {
    border-color: #00d2ff;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15);
    color: #00d2ff;
}

.tour-btn span.arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.tour-btn:hover span.arrow {
    transform: translateX(6px);
}

footer {
    /* width: 100%;
    max-width: 1100px;
    text-align: center;
    z-index: 100;
    background: black;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0px auto 0;
    transition: opacity 0.5s ease; */
        /* margin-top: -150px; */

    width: 100%;
    max-width: 100%;
    text-align: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0);
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
    margin: 0px auto 0;
    transition: opacity 0.5s ease;
    z-index: 1000;
    /* position: fixed; */
    bottom:-4%;
    pointer-events: none;
}

.disclaimer-wrapper {
   width:90%;
    white-space: break-spaces;
    z-index: 1000;
    position: relative;
        text-align: center;
    margin: auto;
}

.disclaimer-text {
    text-align: center;
    font-size: 13px;
    color: #ffffffab;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.zoom-into-screen {
    transform: scale(12);
    opacity: 0;
    filter: blur(8px);
}

.fade-out-element {
    opacity: 0;
    pointer-events: none;
}

@media (max-height: 580px) {
    #app-container { padding: 10px 0; }

}

@media (max-width: 991px) {
    .about-grid, .values-split, .stats-grid, .story-split { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
   .bg-video-layer {
    left: 0;}

        .about-image img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        width: 70% !important;
        /* width: 200px; */
        margin: 10% !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
        .bg-video-layer{
                top: 50% !important;
    left: 50% !important;
        transform: translate(-50%, -50%) rotate(0deg) scale(2.5) !important;
    }
    footer{
            bottom: 4%;
    }
    .about-hero, .brand-story, .core-values {
            padding: 70px 15px;
    }
}