@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: "Geist", sans-serif !important;
}

:root {
    --btnColor: #584b36 !important;
    --background: #D7C9B7;
    --padding-Left-Right: 50px;
    --Nav-color: #1d1d1d !important;
    --footer-color: #181818 !important;
    --blur: 6px !important;


}


.button {
    position: relative;
    display: inline-block;
    padding: 8px 30px !important;
    border-radius: 50px;
    border: 0.5px solid var(--btnColor) !important;
    font-weight: 200 !important;
    background: transparent;
    backdrop-filter: blur(var(--blur));
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.1s ease, border-color 0.3s ease;

    /* ✅ new: stacking context */
    z-index: 0;
}

.button span {
    position: relative;
    z-index: 2;
    color: white;
    /* ✅ text always above everything */
}

.button-black span {
    color: var(--btnColor) !important;
}

.button-black:hover {
    color: white !important;
}

.text-bolder {
    font-family: "Geist";
    font-weight: 500 !important;
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    /* ✅ keep wave layers behind text */
}

.button::before {
    background: var(--btnColor);
    transform: translateY(100%);
    transition: transform 0.2s ease;
}



.button:hover::after {
    color: #fff !important;
    border-color: transparent !important;
}

.button:hover::before,
.button:hover::after {
    transform: translateY(0);
}

@keyframes wave {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 50%;
    }
}

.custom-navbar {
    background: transparent !important;
    padding: 20px 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    color: white !important;
}

/* Main navbar */
.navbar {
    transition: background-color 0.4s, box-shadow 0.4s;
}

.navbar .nav-link {
    color: #ffffff !important;
    font-family: "Geist";
    font-weight: 200;
    font-size: 1.2rem;
    padding: 1px 16px;
    border-radius: 50px;
}

.navbar ul li {
    display: inline-block;
    margin: 0 5px;
    position: relative;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.navbar ul li a::after {
    content: '';
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--btnColor);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.navbar ul li a:hover::after {
    width: 100%;
    left: 0%;
}

/* Scrolled navbar */
.navbar.scrolled {
    background-color: var(--Nav-color) !important;
    box-shadow: 0 2px 10px rgba(78, 78, 78, 0.1) !important;
}

.navbar.scrolled .nav-link {
    color: #ffffff !important;
}

/* Video banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 300vh;
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: inherit;
    transform: translate(-50%, -50%);
    object-fit:cover ;
    object-position: top !important;
}

.video-banner>.box {
    height: inherit;
    width: 100%;
    opacity: 0.55;
    position: absolute;
    top: 0;
    background-color: black;
}

.video-banner .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 40%;
    font-weight: 100;
}

.overlay h1 {
    font-weight: 600;
    font-size: 4rem;
}





.section3 {
    margin-top: 80px;
    border-radius: 30px;
    background-color: var(--Nav-color);
    padding: 50px var(--padding-Left-Right) !important;
}

.section3-col1 img {
    backface-visibility: hidden;
    object-fit: cover;
    object-position: center center;
    height: auto;
    max-width: 100%;
    border-radius: 30px;
}

.section3-col2 {
    color: white;
    display: flex;
    flex-direction: column;
    padding: 0 100px !important;
    margin-top: 160px !important;
}

.section3-col2>h2 {

    font-family: "Geist";
    font-weight: 700;
}

.section3-col2 p span {

    font-weight: bold;
}
















  