    :root {
      --bg-color: #1e1e1e;
      --accent-color: #d97a3a;
      --text-color: #f7f7f7;
      --header-bg: #333;
      --content-bg: rgba(0, 0, 0, 0.4);
      --link-color: #d97a3a;
      --info-bg-color: #222222;
      --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    [data-theme="day"] {
      --bg-color: #ddc7c7;
      --accent-color: #d97a3a;
      --text-color: #111;
      --header-bg: #dd9933;
      --content-bg: rgba(0, 0, 0, 0.2);
      --link-color: #000;
      --info-bg-color: #d9943a;
      --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Header & Navigation */
    .site-header {
        background: #var(--header-bg);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }

    .site-header .logo a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .site-nav ul {
        list-style: none;
        display: flex;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }

    .site-nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    .site-nav a:hover {
        color: #ffcc00;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    /* Hamburger button (for mobile) */
    .hamburger {
      display: none;
      background: none;
      border: 0;
      color: inherit;
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
    }
    /* Mobile behavior */
    @media (max-width: 810px) {
      /* Show hamburger on mobile */
      .hamburger {
        display: block;
      }

      /* Stack header elements a bit nicer if needed */
      .site-header {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
      }

      /* When JS is enabled, hide nav by default on mobile */
      html.js .site-nav {
        display: none;
        width: 100%;
      }

      /* When "open", show it as a vertical list */
      html.js .site-nav.open {
        display: block;
      }

      /* Make mobile nav vertical and touch-friendly */
      .site-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0;
      }

      .site-nav a {
        display: block;
        padding: 0.5rem 0;
      }
    }

    /* Info Bar (above footer) */
    .info-bar {
        background: var(--info-bg-color);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .info-col {
        padding: 0.2rem 1rem;
        text-align: center;
    }

    .info-col strong {
        display: block;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }

    /* Main Styles */
    body {
      margin: 0;
      font-family: var(--font-body);
      background-color: var(--bg-color);
      background-size: 50px 50px;
      color: var(--text-color);
      line-height: 1.6;
    }

    header {
      text-align: center;
      background-color: var(--header-bg);
      padding: 2rem 1rem;
    }

    header h1 {
      font-size: 2.5rem;
      margin: 0.5rem 0;
    }

    header .subtitle {
      font-size: 1.25rem;
      font-style: italic;
      opacity: 0.9;
    }

    a {
      color: var(--link-color);
      font-weight: bold;
    }

    a:hover {
      color: #ffcc00;
    }

    .hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 2rem;
    }

    .hero img {
      max-width: 250px;
      border-radius: 50%;
      border: 5px solid var(--accent-color);
      object-fit: cover;
    }

    .content {
      max-width: 800px;
      margin: auto;
      padding: 2rem;
      text-align: center;
      background: var(--content-bg);
      border-radius: 15px;
    }

    .signature {
      font-family: 'Brush Script MT', cursive;
      font-size: 1.5rem;
      margin-top: 2rem;
    }

    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      padding: 2rem;
    }

    .gallery img {
      max-width: 300px;
      border-radius: 20px;
      border: 4px solid var(--accent-color);
      object-fit: cover;
    }

    footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      opacity: 0.8;
      margin: 0;
      font-family: var(--font-body);
      background-color: var(--header-bg);
      background-size: 50px 50px;
      color: var(--text-color);
      line-height: 1.6;
    }

    @media (max-width: 810px) {
      .hero {
        flex-direction: column;
      }
      .info-bar {
        grid-template-columns: 1fr;   /* single column */
        text-align: left;             /* better readability */
        padding: 1rem;
      }
      .info-col {
        margin-bottom: 1rem;          /* spacing between stacked blocks */
      }
      .nav-actions {
        flex-direction: column; /* stack vertically */
        align-items: flex-end;  /* keep them aligned to the right */
      }
      .nav-links {
        display: none; /* hidden until hamburger clicked */
        flex-direction: column;
      }
    }

    @media (max-width: 810px) {
      html.js .site-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 220ms ease;
      }
      html.js .site-nav.open {
        display: block;        /* keep from earlier */
        max-height: 600px;     /* adjust to fit your menu’s height */
      }
    }
