:root {
    --carolina-blue: #4B9CD3;
    --dark-blue:    #13294B;
    --white:        #ffffff;
    --gray:         #f4f4f4;
  }
  
  /* Reset & base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--carolina-blue);
  }
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    transition: color 0.3s ease;
  }
  .nav-links a:hover {
    color: var(--carolina-blue);
  }
  
  /* Burger icon (hidden on desktop) */
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .burger div {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    margin: 4px 0;
    transition: 0.3s;
  }
  
  /* Hero */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
      linear-gradient(rgba(19,41,75,0.8), rgba(19,41,75,0.8)),
      url('background.jpg') center/cover no-repeat;
    color: var(--white);
  }
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  /* News Ticker */
  .news-ticker {
    width: 100%;
    overflow: hidden;
    background: var(--carolina-blue);
    padding: 1rem 0;
    margin-top: 2rem;
  }
  .ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
  }
  @keyframes ticker {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  /* Sections */
  .section {
    padding: 4rem 2rem;
  }
  .section h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  /* About & Work */
  .about-content,
  .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2rem;
  }
  .work-item {
    background: var(--gray);
    padding: 2rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* Download button */
  .resume-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 60px;
      right: 0;
      flex-direction: column;
      background: var(--white);
      width: 200px;
      padding: 1rem;
    }
    .nav-links.active {
      display: flex;
      gap: 1rem;
    }
    .burger {
      display: flex;
    }
    .hero-content h1 {
      font-size: 2rem;
    }
  }
  