  body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    background-color: #333333;
    color: #333;
  }
  header {
    background-color: #001f3f;
    color: white;
    padding: 2rem;
    text-align: center;
  }
  header h1 {
    margin: 0;
  }
  
  nav {
    text-align: center;
    margin-top: 1rem;
  }
  nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #007acc;
  }
  section {
    max-width: 1220px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  h2 {
    color: #001f3f;
    
  }
  .highlight-box h2 {
    text-decoration: underline;
  }
  .button {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: #007acc;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .button:hover {
    background-color: #005a99;
  }
  .highlight-box {
    background-color: #001f3f;
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    margin: 0;
  }
  .highlight-box h2 {
    color: white;
    margin-bottom: 1.5rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 500px;
  }
  .contact-list li {
    margin: 1rem 0;
    font-size: 1.1rem;
  }
  .contact-list a {
    color: #66d9ef;
    text-decoration: none;
    font-weight: bold;
  }
  .contact-list a:hover {
    text-decoration: underline;
  }
  footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
  }
  .flex-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .flex-container > .highlight-box {
    width: 540px;
  }

  .portfolio-section {
    width: 1304px;
    margin: 2rem auto;
  }

  .project-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #2a90af;
    box-sizing: border-box;
  }
  
  .project-wrapper > video,
  .project-wrapper > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .project-item h3 {
    margin: 0;
    margin-bottom: 0.3rem; /* or however tight you want it */
  }
  

  /* .project-tagline {
    margin-top: -0.5em;
    margin-bottom: 0.5rem;
    font-size: 0.95em;
    font-weight: normal;
  } */ 

  .tech-stack {
    margin-top: 0.4rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tech-stack span {
    background-color: #2a90af;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 600;
  }

  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .project-item {
    display: flex;
    flex-direction: column;
  }

/* FullCalendar */
  .fc {
    --fc-neutral-bg-color: transparent;
    --fc-page-bg-color: transparent;
    --fc-button-bg-color: #0056b3;
    --fc-button-text-color: #fff;
    --fc-button-hover-bg-color: #00408d;
  }
  .fc .fc-button {
    font-weight: bold;
    font-family: inherit;
    border: none;
  }


  /*Booking Box (modal) overlay */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  /* Modal Box */
  .modal-content {
    background: #fff;
    color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    width: 350px;
    max-width: 90%;
  }

  /* Form labels and inputs */
  .modal-content label {
    display: block;
    margin-top: 0.8rem;
    font-weight: bold;
  }

  .modal-content input,
  .modal-content textarea {
    width: 100%;
    padding: 0.4rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
  }

  /* Actions row */
  .modal-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  /* ===== Recipe page ===== */
  .recipe-page .recipe-container {
    /* replaces the inline style you had on <section> */
    max-width: 1100px;
    margin: 1.5rem auto;
  }

  /* Buttons row spacing */
  .recipe-page .recipe-top-row {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  /* Two-column layout (ingredients+info | instructions+details) */
  .recipe-page .recipe-grid-2col {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* left narrower, right wider */
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: start;
  }
  @media (max-width: 900px){
    .recipe-page .recipe-grid-2col { grid-template-columns: 1fr; }
  }

  /* Outlined containers (panels & ingredients) */
  .recipe-page .recipe-panel,
  .recipe-page .recipe-ingredients {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    background: transparent; /* you can swap to #007acc later if desired */
  }

  /* Ingredients list */
  .recipe-page .recipe-ingredients ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
  }
  .recipe-page .recipe-ingredients li {
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px dashed #eee;
  }
  .recipe-page .recipe-ingredients li:last-child {
    border-bottom: none; /* no underline on last ingredient */
  }

  /* Instructions block (match ingredients typography) */
  .recipe-page .recipe-instructions {
    white-space: pre-wrap;
    margin: 0;
  }

  /* Metadata table */
  .recipe-page .recipe-kv {
    width: 100%;
    border-collapse: collapse;
  }
  .recipe-page .recipe-kv th,
  .recipe-page .recipe-kv td {
    padding: .45rem .6rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px dashed #eee;
  }
  .recipe-page .recipe-kv th {
    width: 22ch;
    font-weight: 600;
  }
  
  /* No underline on last row – matches ingredients box */
  .recipe-page .recipe-kv tr:last-child th,
  .recipe-page .recipe-kv tr:last-child td {
    border-bottom: none;
  }

  
  /* .project-item video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 0.5rem;
  } */

  /* .video-item img {
    width: 100%;
    border-radius: 8px;
    margin-top: 0.5rem;
  } */
  
  