@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Anton&family=Archivo+Black&family=Bangers&family=Bayon&family=Bebas+Neue&family=Changa+One:ital@0;1&family=Dangrek&family=Denk+One&family=Flow+Circular&family=Francois+One&family=Great+Vibes&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Koulen&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Khmer:wght@100..900&family=Oswald:wght@200..700&family=Paytone+One&family=Playwrite+AU+SA:wght@100..400&family=Playwrite+FR+Moderne+Guides&family=Preahvihear&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Russo+One&family=Sriracha&family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Anton&family=Archivo+Black&family=Bangers&family=Bayon&family=Bebas+Neue&family=Changa+One:ital@0;1&family=Dangrek&family=Denk+One&family=Flow+Circular&family=Francois+One&family=Great+Vibes&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Koulen&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Khmer:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Paytone+One&family=Playwrite+AU+SA:wght@100..400&family=Playwrite+FR+Moderne+Guides&family=Preahvihear&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Russo+One&family=Sriracha&family=Teko:wght@300..700&display=swap');

:root {
    --primary-color: #100e17;
    --primary-color-dark: #0c0b12;
    --white: #ffffff;
    --max-width: 1200px;
    --background-gradient-1: linear-gradient(to right, #cfa12d, #ffb700);
    --background-gradient-2: linear-gradient(to right, #0d1003, #242304);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #010977;
    border-radius: 6px;
    border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #06048a;
}

* {
    padding: 0;
    margin: 0;
}

.site-wrapper {
    overflow-x: hidden;
    position: relative;
}

[data-aos='fade-left'] {
    transform: translate3d(-100px, 0, 0);
    /* This is the AOS animation */
}

/* Add this to compensate for the overflow */
.site-wrapper [data-aos='fade-left'] {}

p {
    line-height: 1.5rem;
}

#russu-font {
    font-family: "Russo One", sans-serif;
}

#noto-serif {
    font-family: "Noto Serif", serif;
}

@media (max-width: 767px) {
    .logo {
        transform: none;
        margin: 24px 24px;
    }
}

.logo img {
    display: block;
    position: relative;
}


.hamburger-wrapper {
    padding-right: 24px;
    display: flex;

    align-items: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: relative;
    margin-left: 12px;
}

.hamburger div {
    height: 2px;
    background-color: #000;
    border-radius: 1px;
    /* optional: rounded bars */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-with-bg {
    background-color: white;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 12px 24px;
    /* keep only side padding */
}

@media (max-width: 500px) {
    .navbar-container {
        max-width: 100%;
        padding: 0 0px;
    }

    .nav-menu {
        box-shadow: 0px 2px 8px rgb(0, 0, 0, 0.3);
    }
}

.nav-menu {
    position: absolute;
    top: 250%;
    right: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    min-width: 300px;
    margin-right: 18px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        /* normal flow */
        top: auto;
        right: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        flex-direction: row;
        /* horizontal links */
        gap: 24px;
        opacity: 1;
        /* fully visible */
        transform: none;
        pointer-events: auto;
    }

    .nav-menu a {
        padding: 0;
        /* remove mobile dropdown padding */
        color: #000000;
    }

    .nav-menu a:hover {
        background: none;
        text-decoration: underline;
    }

    .hamburger {
        display: none;
        /* hide hamburger icon on desktop */
    }
}

.nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
}

.nav-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-menu.active {
    display: flex;
}


.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.section__subheader {
    max-width: 600px;
    margin: auto;
    text-align: center;
    line-height: 1.5rem;
}

.gradient__header {
    background: var(--background-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    font-family: sans-serif;
    color: black;
    background: var(--background-gradient-1);
    border-radius: 5px;
    cursor: pointer;
}

img {
    width: 80%;
    display: flex;
}

.cta a {
    position: relative;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0.5px solid rgb(175, 175, 175);
    border-radius: 18px;
    color: #000;
    padding: 18px 16px 18px;
    padding-right: 54px;
    box-sizing: border-box;
    min-width: 150px;
    transition: all .1s ease-in;
    font-size: 18px;
}
.cta .f-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: inline-block;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  transition: all .1s ease-in;
}
#sec-cta {
    background: linear-gradient(356deg, rgb(0, 0, 0) 0%, rgb(28, 0, 153) 100%);
    color: #fff;
}

#sec-cta:hover {
    opacity: 80%;
}

#ph-cta {
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

a {
    text-decoration: none;
}

#paytone-one-regular {
    font-family: "Paytone One", sans-serif;
    font-weight: 100;
}

body {
    color: var(--white);
    font-family: sans-serif;
}


.hero-img {
    display: block;
    width: 100%;
    justify-content: center;
    margin: 0;
    border-top: 2px solid white;
    background-color: transparent;
}

.hero-img-drip {
    display: block;
    width: 100%;
    margin: 0;
    background-color: transparent;
    filter: invert(1);
}

.about_us-img {
    display: block;
    width: 100%;
    margin: 0;
    border-top: 2px solid white;
    background-color: transparent;
    filter:
        brightness(0)
}



.tag_black h5 {
    display: inline-block;
    background: url("assets/brush_black.PNG") no-repeat center center;
    background-size: 100% auto;
    color: white;
    padding: 2em 50px;
}

.tag_white h5 {
    display: inline-block;
    background: url("assets/brush_white.PNG") no-repeat center center;
    background-size: 100% auto;
    color: rgb(0, 0, 0);
    padding: 2em 50px;
    font-weight: bolder;
    font-size: 20px;
}


/* Mobile: remove top padding */
@media (max-width: 767px) {
    header {
        height: auto;
    }
}

header::before {}

header * {
    position: relative;
}

.header__container {}



.heading-text {
    font-family: "Russo One", sans-serif;
    width: 100%;
    /* full width */
    margin-bottom: 1rem;
    font-size: clamp(50px, 10vw, 90px);
    /* smaller on mobile, bigger on desktop */
    line-height: 1.2;
}

.p-text {
    max-width: 600px;
    padding-bottom: 3rem;
    font-size: clamp(14px, 1vw, 18px);
}

.rewards {
    background:
        linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
        /* black at bottom */
        url("assets/banner.png") center/cover no-repeat;
    height: auto;
}

.form-container {
    padding-bottom: 6rem;
    margin-top: -7rem;
}

.service-column {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.service-column p {
    color: rgb(54, 54, 54);
}

.service-column:first-child {
    padding-right: 16px;
}

.service-column:last-child {
    padding-left: 16px;
}

.service-column i {
    font-size: 40px;
    color: #010977;
    margin-bottom: 8px;
}

.res-com-text {
    white-space: nowrap;
    /* Desktop: one line */
    color: rgb(54, 54, 54);
}

.vertical-line {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #b1b1b1;
}

@media (max-width: 480px) {
    .res-com-text {
        white-space: normal;
        /* Mobile: allow wrap */
    }
}

@media (max-width: 900px) {
    .rewards {
        padding-top: 0;
        height: auto;
    }
}

.map {
    background-image: url('assets/banner3.jpg');
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rewards__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.rewards__container :is(.section__header, .section__subheader) {
    text-align: left;
    max-width: 100%;
}

.rewards__container .section__header sup {
    font-size: 1rem;
    font-weight: 500;
}

.rewards__grid {
    padding: 2px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--background-gradient-2);
}

.rewards__card {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--primary-color);
}

.rewards__card img {
    max-width: 40px;
}

.rewards__card:hover {
    background: var(--background-gradient-2);
}

.rewards__details p {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 500;
}

.rewards__details h4 {
    font-size: 2rem;
    font-weight: 500;
}

/* Banner container fixed at bottom */
.video-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 1000;
}

/* Left text with arrow background */
.video-text-left {
    position: relative;
    background: white;
    color: black;
    padding: 6.8px 15px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
}

/* Arrow shape pointing to right using :after */
.video-text-left::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid rgb(255, 255, 255);
}

/* Video container (right) */
.video-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s ease, height 0.4s ease, border-radius 0.4s ease;
    background: black;
    position: relative;
}

/* Video inside the circle */
.about-us-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: width 0.4s ease, height 0.4s ease;
}

/* Click Me text on circle */
.video-text {
    position: absolute;
    bottom: -18px;
    font-size: 12px;
    color: white;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    color: black;
    font-size: 18px;
    display: none;
    cursor: pointer;
    z-index: 10;
}

/* Expanded video */
.video-container.expanded {
    width: 400px;
    height: 700px;
    border-radius: 12px;
}

/* Hide texts when expanded */
.video-container.expanded .video-text {
    opacity: 0;
}

.video-container.expanded~.video-text-left,
.video-container.expanded+.video-text-left {
    display: none;
}

/* Text below the circle */
.video-text {
    position: absolute;
    bottom: -18px;
    font-size: 12px;
    color: white;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    color: black;
    font-size: 18px;
    display: none;
    /* hidden by default */
    cursor: pointer;
    z-index: 10;
}

/* Expanded state */
.video-container.expanded {
    width: 400px;
    height: 700px;
    border-radius: 18px;
}

.video-container.expanded .video-text {
    opacity: 0;
    /* hide "Click Me" text when expanded */
}

.video-container.expanded .close-btn {
    display: block;
    /* show close button when expanded */
}

.video-wrapper {
    width: 450px;
    max-width: 100%;
    aspect-ratio: 5 / 7;
    border-radius: 18px;
    /* rounded corners */
    border: 2px solid white;
    margin: 0 auto;
}

.about-us-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 18px;
    /* match wrapper corners */
    object-fit: cover;
    /* scale nicely */
}

.video-container.expanding video {
    pointer-events: none;
    /* disable interaction while expanding */
}

/* Mobile adjustments */
@media (max-width: 768px) {

    /* Center expanded video on mobile */
    .video-container.expanded {
        bottom: 50%;
        right: auto;
        width: 300px;
        /* optional smaller size on mobile */
        height: 525px;
        /* maintain 5:7 ratio */
    }


}

/* Footer base styles */
.footer {
    position: relative;
    background: rgb(255, 255, 255);
    isolation: isolate;
    padding: 3rem 1rem;
    color: #000000;
}

.footer::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 2fr;
    gap: 2rem;
}

.footer__col h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer__col p {
    margin-bottom: 2rem;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__socials a {
    padding: 6px 11px;
    font-size: 1.25rem;
    background: #010977;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.footer__socials span:hover {
    opacity: 80%;
}

.footer__col h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.footer__col a {
    display: block;
    margin-bottom: 1rem;
}

.footer__col form {
    padding: 5px;
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
    background: var(--background-gradient-2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.footer__col input {
    width: 100%;
    padding: 0 1rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: transparent;
}

.footer__col input::placeholder {
    color: var(--white);
}

.footer__col .submit__btn {
    padding: 10px 12px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__socials {
        justify-content: center;
    }
}

/* Contact Form Container */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    color: white;
    margin: auto;
}


/* Form Rows */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Keep first/last name and city/state side by side */
.name-row,
.city-row {
    flex-wrap: nowrap;
}

/* Form Groups */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: white;
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 8px;
}

textarea {
    height: 100px;
    resize: vertical;
}

/* Terms Checkbox */
.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: rgb(0, 102, 255);
    cursor: pointer;
    margin-top: 3px;
}

.terms-text {
    font-weight: 300;
    font-size: clamp(14px, 2vw, 14px);
    line-height: 1.4;
    cursor: default;
}

/* Submit Button */
#submit-btn {
    width: 100%;
    padding: 15px;
    background: gray;
    /* disabled */
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: not-allowed;
    transition: 0.3s;
}

#submit-btn.enabled {
    background: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {

    /* All rows except name-row and city-row stack vertically */
    .form-row:not(.name-row):not(.city-row) {
        flex-direction: column;
    }

    .contact-form {
        padding: 15px;
    }

    textarea {
        padding: 10px;
    }
}