* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #f5efe6;
    color: #3b2f2f;
  }
  
/* NAVBAR */
/* .navbar {
    background: #f4eadc;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
  } */
   /* NAVBAR WITH PARCHMENT */
/* .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  
    height: 90px; 
  
    background-image: url('images/top_parchment_artic.png'); 
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  
    display: flex;
    align-items: center;
  } */
  
  .navbar {
    background: #f4eadc;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
  }

  /* CONTAINER */
  .nav-container {
    height: 100%;
    max-width: 1100px;
    margin: 0 auto 0 auto;
    padding: 0 32px;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  /* LOGO */
  .nav-logo a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    color: #3b2f2f;
    letter-spacing: 1px;
  }
  
  /* BUTTON */
  .nav-btn {
    text-decoration: none;
    background: #a33c1d;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s ease;
  }
  
  .nav-btn:hover {
    background: #7e2e15;
  }

  .examples-section {
    padding: 20px 20px 20px 20px;
    text-align: center;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    margin-bottom: 40px;
    color: #6b5b4d;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card h3 {
    margin: 0 0 10px;
  }
  
  .card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #c49a3a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
  }
  
  .btn:hover {
    background: #a87f2d;
  }
  
/* Bottom CTA section */
/* CTA ROW */
.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;  
    gap: 30px;
  
    margin-top: 30px;
    padding: 20px 20px;
  
    border-radius: 12px;
}
  
  /* LEFT SIDE */
  .cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .cta-left p {
    margin: 0;
    font-size: 1.2rem;
    color: #3b2f2f;
  }
  
  /* ICON */
  .cta-icon {
    width: 40px;
    height: auto;
  }
  
  /* RIGHT SIDE BUTTON */
  .cta-button {
    background: #a33c1d;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s ease;
  }
  
  .cta-button:hover {
    background: #7e2e15;
  }

  /*  */
  .bottom-art {
    width: 100%;
    height: 100px;
  
    background: url('images/mountains_castle.png') no-repeat center bottom;
    background-size: cover;
  
    pointer-events: none; /* important so it doesn't block clicks */
    z-index: 1;
  }

  .blog-link {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  
  .blog-link a {
    color: #7a4e1d;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
  
    transition: opacity 0.2s ease;
  }
  
  .blog-link a:hover {
    opacity: 0.7;
  }
  
  /* CLICKABLE IMAGE */
.expandable-image {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .expandable-image:hover {
    transform: scale(1.02);
  }
  
  /* LIGHTBOX BACKGROUND */
  .lightbox {
    display: none;
  
    position: fixed;
    z-index: 5000;
  
    left: 0;
    top: 0;
  
    width: 100%;
    height: 100%;
  
    background: rgba(0,0,0,0.85);
  
    justify-content: center;
    align-items: center;
  }
  
  /* LARGE IMAGE */
  .lightbox-content {
    max-width: 90%;
    max-height: 85%;
  
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  
  /* CLOSE BUTTON */
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
  
    color: white;
    font-size: 40px;
    font-weight: bold;
  
    cursor: pointer;
  }
  
  /* Mobile */
  @media (max-width: 700px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  
    .cta-left {
      justify-content: center;
    }
  
    .cta-right {
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .cta-button {
      display: inline-block;
    }
  }

  @media (max-width: 900px) {
    .card-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }