:root {
    --primary-dark: #19535f;
    --beige: #d7c9aa;
    --light-bg: #f0f3f5;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    background-color: var(--light-bg);
    color: #111;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  body::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  h1, h2, .logo-title, .section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
  }
  
  .logo-subtitle,
  p,
  .nav-link,
  .about-text {
    font-weight: 400;
  }
  
  /* Splash Screen */
  .splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-dark);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 9999;
    animation: splashFade 5s ease forwards;
    color: var(--light-bg);
  }
  .splash-title {
    font-size: 3rem;
    animation: fadeInUp 1s ease-in-out;
  }
  .splash-subtitle {
    font-size: 1.5rem;
    color: var(--beige);
    animation: fadeInUp 1s ease-in-out 0.5s;
  }
  
  @keyframes splashFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-dark);
    padding: 20px 10%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: var(--light-bg);
  }
  .logo-title {
    font-size: 1.4rem;
  }
  .logo-subtitle {
    font-size: 0.8rem;
    color: var(--beige);
  }
  
  /* Navigation Links */
  .nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  .nav-link {
    color: var(--light-bg);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: var(--light-bg);
    left: 0;
    bottom: -8px;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .nav-link:hover {
    transform: translateY(-2px);
  }
  .nav-link.active {
    color: var(--beige);
    font-weight: 700;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-bg);
  }
  
  @media (max-width: 768px) {
    .nav-list {
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 10%;
      width: 80%;
      background: var(--primary-dark);
      padding: 20px;
      display: none;
      gap: 20px;
      border-radius: 10px;
      z-index: 999;
    }
    .nav-list.show {
      display: flex;
    }
    .hamburger {
      display: block;
    }
  }
  
  /* Sections */
  .page-section {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    color: #111;
  }
  .page-section:nth-child(even) {
    background-color: var(--beige);
  }
  
  /* Section Titles */
  .section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* About Section Grid */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
  }
  .about-image {
    text-align: center;
  }
  .profile-pic {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease;
  }
  .profile-pic:hover {
    transform: scale(1.05);
  }
  .about-text {
    text-align: left;
  }
  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
  }
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 20px;
    }
    .about-text {
      text-align: center;
    }
    .about-text h2 {
      font-size: 1.8rem;
    }
    .about-text p {
      font-size: 1rem;
    }
    .profile-pic {
      max-width: 180px;
    }
  }
  
  /* Portfolio Grid */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .portfolio-logo {
    width: 100%;
    max-width: 150px;
    object-fit: contain;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
  }
  .portfolio-logo:hover {
    transform: scale(1.05);
  }
  
  /* Blog Placeholder */
  .blog-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
  }
  .blog-card.coming-soon {
    background: var(--light-bg);
    border: 2px dashed var(--primary-dark);
    border-radius: 12px;
    padding: 40px 20px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }
  .blog-card.coming-soon .blog-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .blog-card.coming-soon .blog-snippet {
    color: #555;
  }
  
  /* GLightbox override */
  .glightbox-clean .gdesc {
    font-family: 'Archivo', sans-serif;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  