        :root {
            --orange: #ff6200;
            --dark: #0a0a0a;
            --darker: #000000;
            --light: #ffffff;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }
        p, .card-text, .list-unstyled li {
            color: var(--light) !important;
        }
        .navbar {
            background-color: #ffffff !important;
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }
        .navbar.scrolled {
            background-color: rgba(255,255,255,0.95) !important;
            backdrop-filter: blur(15px);
        }
        .nav-link {
            color: #000 !important;
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--orange) !important;
        }
        .navbar .nav-link.active {
            color: var(--orange) !important;
        }
        .logo {
            height: 6rem;
        }
        .btn-orange {
            background: var(--orange);
            border: none;
            padding: 10px 24px;
            font-weight: 600;
            transition: all 0.4s;
            border-radius: 6px;
        }
        .btn-orange:hover {
            background: #e05500;
            transform: scale(1.05);
        }
        .btn-orange-nav {
            padding: 8px 20px;
            font-size: 0.95rem;
        }
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url('https://motorsportmagazine.b-cdn.net/wp-content/uploads/2022/02/Mercedes-V6-hybrid-F1-engine.jpg') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at center, transparent 30%, var(--dark) 80%);
        }
        .hero-content {
            z-index: 2;
        }
        .hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            text-shadow: 0 0 30px rgba(255,98,0,0.6);
            margin-top: 10%;
        }
        .parallax-section {
            position: relative;
            overflow: hidden;
            padding: 180px 0;
            background-color: var(--dark);
        }
        .parallax-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 130%;
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
        .section-title {
            color: var(--orange);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--orange);
        }
        .card {
            background: rgba(30,30,30,0.9);
            border: none;
            overflow: hidden;
            transition: all 0.6s ease;
            backdrop-filter: blur(5px);
        }
        .card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 60px rgba(255,98,0,0.4);
        }
        .card-img-top {
            transition: transform 0.8s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.15);
        }
        .card-title {
            color: var(--orange);
        }
/*        .bio-pic {
            width: 15rem;
            float: left;
            padding-right: 3rem;
        }*/

        .bio-card {
            margin: 0 auto;
            padding: 2rem 1rem;
          }

          .bio-content {
            display: flex;
            flex-direction: row;
            align-items: left;
            gap: 1.8rem;
          }

          .bio-pic {
            width: 180px;
            height: 180px;
          }

          .bio-text {
            text-align: left;
            line-height: 1.65;
          }

          .bio-text p {
            margin-bottom: 1.4rem;
          }

        .floorplan-frame {
            height: 1200px;
        }

        section[id], div[id] { /* Targets any element with an ID (your #home, #about, etc.) */
            scroll-margin-top: 100px;
        }


        footer {
            background: var(--darker);
        }

        .full-text {
          display: inline;
        }
        .short-text {
          display: none;
        }

        @media (max-width: 1199px) {
            .hero h1 {
                font-size: 3.8rem;
            }
            .logo {
                height:60px;
            }

            .full-text {
              display: none;
            }
            .short-text {
              display: inline;
            }
        }


        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
                margin-top: 25%;
            }
            .bio-pic {
              width: 260px;
              height: 260px;
            }
            .logo {
                height: 110px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 140px 0 100px;
                align-items: flex-start;
            }
            .hero h1 {
                font-size: 2rem;
                margin-top: 0%;
            }
            .hero .lead {
                font-size: 1.1rem;
            }
            .hero .fs-4 {
                font-size: 1.15rem !important;
            }
            .hero .btn-lg {
                padding: 12px 24px;
                font-size: 1rem;
            }
            .hero .mt-4 {
                margin-top: 2rem !important;
            }
            .btn-orange-nav {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            .bio-content {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 2.5rem;
            }

            .bio-pic {
              width: 220px;
              height: 220px;
              margin-top: 0.5rem; /* slight top alignment tweak */
            }

            .bio-text {
              text-align: center;
              flex: 1;
            }

            #location-img {
                margin-top: 5%;
            }

            #location h3 {
                margin-top: 5%;
            }

            .logo {
                height: 110px;
            }

        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
                margin-top: 5rem;
            }
            .hero .btn-lg {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .hero .mx-3 {
                margin: 10px 0 !important;
            }
            .parallax-section {
                padding: 0px;
            }
            .bio-content {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 1.8rem;
            }
            .bio-text {
                text-align: center;
                line-height: 1.65;
            }
            #floorplan {
                margin-top: 35%;
            }
            .floorplan-frame {
                height: 450px;
            }
            .logo {
                /*width: 400px;*/
                height: 120px;
            }
            #register-interest {
                margin-top: 50%;
            }
        }
