



  /* ===== CSS VARIABLES ===== */
        :root {
            --gold: #c09320;
            --gold-hover: #C4A030;
            --gold-light: #a28e5b;
            --primary: #1a1a1a;
            --secondary: #4a5568;
            --accent: #2d3748;
            --background: #ffffff;
            --surface: #f7fafc;
            --border: #e2e8f0;
            --text: #2d3748;
            --text-light: #000000;
            --card-bg: #ffffff;
            --card-text: #1a1a1a;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
        }

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


body {
    padding: 0 200px;
    background: var(--background);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
.divider{
    margin: 600px;
}

        /* ===== HERO SECTION ===== */
        .hero {
            padding-top: 100px;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }



        .cta-overlay {
            text-align: center;
            max-width: 800px;
        }

        .hero .wrap {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            /* uh doesnt work*/
        }

        .hero-text {
            flex: 1;
        }


.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin: 16px 0 24px;
    line-height: 1.1;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
    font-family: 'Poppins', sans-serif;
}

        .hero h1 span {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }




        /* ===== BUTTON STYLES ===== */


        .btn-secondary {
            display: inline-block;
            margin-bottom: 1vh;
            position: relative;
            overflow: hidden;
            background: transparent;
            color: var(--gold-light);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            border: 2px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }





        /* ===== CTA BLOCK ===== */

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    /* background: #000; */
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.video-container video {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* visibility: hidden; */
}

/* Dark gradient overlay for text readability */
.video-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

        /* ===== SCROLL CARDS SECTION ===== */
        .scroll-section {
            padding: 0px 14px;

        }

.scroll-cards {
    counter-reset: card;
    position: relative;
    display: block;
    padding-bottom: 60vh;
    width: auto;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}
.scroll-cards h1 {
    position: sticky;
    top: 4rem;
    font-size: clamp(2rem, 52vw, 3rem);
    margin: 0 0 2rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
    max-height: 40vh;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

        .scroll-cards__item {
            --offset: 2.5em;
            position: sticky;
            top: max(11vh, 1px);
            padding: 0.8em 1.3em;
            min-height: 40em;
            background: white;
            border-radius: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 2em;
            transition: all 0.3s ease;

        }

        .scroll-image{
            position: absolute;
            max-height: 100%;
            max-width: 100%;
            width: 760px;
            border-radius: 20px;
            margin-left: 145px;
            margin-left: 800px;
            top: 10%;
            object-fit: contain;
        }

.scroll-cards__item h2 {
    color: var(--gold-light);
    font-family: 'Poppins', sans-serif;
    opacity: 1;
}

        .scroll-cards__item {
            line-height: 1.2;
            opacity: 1;

        }

.scroll-cardsp{
    max-width: 40%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.scroll-cards-animation {
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-cards-animation.visible {
    opacity: 1;
}


.scroll-cards__item:nth-of-type(1) {
  transform: translateY(calc((1 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(2) {
  transform: translateY(calc((2 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(3) {
  transform: translateY(calc((3 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(4) {
  transform: translateY(calc((4 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(5) {
  transform: translateY(calc((5 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(6) {
  transform: translateY(calc((6 - 1) * var(--offset)));
}



/* ===== ANIMATIONS ===== */


        /* ===== PWA BANNER ===== */
        #pwa-install-banner {
            display: none;
        }

        #pwa-install-banner.show {
            display: block;
            animation: slideUp 0.5s ease;
        }

@keyframes cardsfade-in {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 600px) {
            .modal-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.55);
                align-items: center;
                justify-content: center;
                z-index: 1200;
            }
            .modal-overlay.show { display: flex; }
            .modal {

                border-radius: 10px;
                max-width: 760px;
                width: 92%;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(2,6,23,0.4);
            }
            .modal .modal-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 8px;
            }
            .modal .modal-body { display: flex; gap: 12px; }
            .modal .modal-body img { max-width: 48%; border-radius: 6px; }
            .modal .modal-body .info { flex: 1; }
            .modal .close {
                border: 0;
                padding: 6px 10px;
                border-radius: 6px;
                cursor: pointer;
            }
            .details .title { cursor: pointer; text-decoration: underline; }
        }

        @media (max-width: 600px) {
            .hero .wrap {
                flex-direction: column;
                text-align: center;
            }

            .grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 36px; }
            .cta-block .wrap { flex-direction: column; text-align: center; }
            .scroll-image{height: 100%; width: 100%; right: 150px; margin-left: 150px; border-radius: 20px;  position: relative;}
            .scroll-cardsp{ max-width: 100%; }
            .scroll-cards{font-size: 15px;}
            /* hereeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee */

            .video-container {
                height: 800px;
            }
            .video-container video {
                height: 100%;
                width: 100%;
                object-fit: cover;
                visibility: visible;
            }
        }


.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loading-sequence 6s ease-in-out forwards;
}

.loading-content {
  text-align: center;
  color: var(--text-primary);
  opacity: 0;
  animation: text-appear 2s ease-in-out 1s forwards;
}

.loading-text {
  font-size: clamp(5rem, 8vw, 6rem);
  margin: 0;
  letter-spacing: -2px;
}

.loading-subtitle {
  font-size: 1.0rem;
  opacity: 0.8;
  margin: 0rem 0 0;
  font-weight: 300;
  word-spacing: 20px;
    letter-spacing: 15px;
}

@keyframes text-appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-sequence {
  0%, 70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none; /* Allows interaction with content underneath */
  }
}



