        /* ===== Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Glacial Indifference', sans-serif;
            color: rgb(190, 190, 190);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Remove all bold styling */
        strong, b {
            font-weight: 400;
        }

        /* ===== Navigation ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            z-index: 1000;
            transition: all 0.4s ease;
            background-color: transparent;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            font-weight: 400;
        }

        .nav-links a.active {
            color: #3aff9e;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== Full Page Sections ===== */
        .fullpage-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .section-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .section-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .section-content {
            position: absolute;
            bottom: 15%; /* Moved text lower on screen */
            left: 10%;
            max-width: 80%;
            z-index: 1;
        }

        /* City Selector */
        .city-selector {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .city-btn {
            background: transparent;
            border: none;
            color: white;
            font-family: inherit;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.5rem 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .city-btn.active {
            color: #3aff9e;
            border-bottom: 1px solid #3aff9e;
        }

        /* Experience Content */
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: white;
            text-transform: lowercase;
            font-weight: 400;
        }

        .section-tagline {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: white;
        }

        .card-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            color: #3aff9e;
            font-size: 0.9rem;
        }

        .card-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: white;
            font-weight: 400; /* Explicit normal weight */
        }

        .card-desc {
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            max-width: 600px;
        }

        .card-cta {
            color: #3aff9e;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            font-weight: 400;
        }

        .card-cta:hover {
            color: white;
        }




        /* ===== Responsive Adjustments ===== */
@media (max-width: 1400px) {
  .section-content {
    left: 8%;
    max-width: 85%;
  }
  h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.5rem;
  }
  h1 {
    font-size: 2.8rem;
  }
  .section-tagline {
    font-size: 1.1rem;
  }
  .card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 1rem;
  }
  .section-content {
    left: 7%;
    max-width: 86%;
  }
  h1 {
    font-size: 2.4rem;
  }
  .card-title {
    font-size: 1.4rem;
  }
  .city-selector {
    gap: 1.2rem;
  }
  .card-meta {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: left 0.4s ease;
  }
  .nav-links.active {
    left: 0;
  }
  .mobile-menu-btn {
    display: block;
  }

  /* Content Adjustments */
  .section-content {
    left: 5%;
    max-width: 90%;
    bottom: 20%;
  }
  h1 {
    font-size: 2rem;
  }
  .section-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .card-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .city-selector {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  nav {
    padding: 1rem 5%;
  }
  .logo img {
    height: 30px;
  }
  h1 {
    font-size: 1.8rem;
  }
  .section-tagline {
    font-size: 0.9rem;
  }
  .card-title {
    font-size: 1.2rem;
  }
  .card-desc {
    font-size: 0.9rem;
  }
  .card-meta {
    font-size: 0.8rem;
  }
  .card-cta {
    font-size: 0.8rem;
  }
  .city-btn {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.6rem;
  }
  .section-content {
    bottom: 15%;
  }
  .section-tagline {
    margin-bottom: 1.2rem;
  }
  .city-selector {
    gap: 0.8rem;
  }
}