.banner {
    text-align: center;
}

.banner img {
    display: inline-block;
    width: 1200px;      /* IMPORTANT */
    max-width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(245, 210, 107, 0.25);
    box-shadow:
        0 0 0 1px rgba(245, 210, 107, 0.12),
        0 24px 80px rgba(0, 0, 0, 0.9);
}

.play-btn{
    margin-top: 20px;
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid rgba(245, 210, 107, 0.7);
    background: radial-gradient(circle at 0 0, rgba(245, 210, 107, 0.35), transparent 60%),
                linear-gradient(120deg, #1a1205, #3b2a0b);
    color: var(--gold-soft);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    gap: 8px;
    box-shadow:
        0 0 18px rgba(245, 210, 107, 0.45),
        0 10px 30px rgba(0, 0, 0, 0.9);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.play-btn:hover {
      transform: translateY(-1px);
      box-shadow:
        0 0 22px rgba(245, 210, 107, 0.7),
        0 16px 40px rgba(0, 0, 0, 0.95);
    }

/* #region Gallery, Row-Scrn & Row-Col */
.row-scrn {
    float: right;
    align-items: right;
    margin-left: 40px;
}

.scrn-col {
    flex-basis: 30%;
    max-width: 350px;
    max-height: 250px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

.scrn-col img {
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    border-radius: 30px;
    border: 1px solid rgba(245, 210, 107, 0.25);
    box-shadow:
        0 0 0 1px rgba(245, 210, 107, 0.12),
        0 24px 80px rgba(0, 0, 0, 0.9);
}

.scrn-col:hover {
    transform: scale(1.2);
}

    /* #region Image Modal */
    /* Modal background */
    .img-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        inset: 0;
        justify-content: center;
        align-items: center;
    }

    /* Modal image */
    .img-modal-content {
        max-width: 90%;
        max-height: 90%;
        min-width: 50%;
        min-height: 50%;
        border-radius: 16px;
        border: 1px solid rgba(245, 210, 107, 0.25);
        box-shadow:
            0 0 0 1px rgba(245, 210, 107, 0.12),
            0 24px 80px rgba(0, 0, 0, 0.9);
        animation: zoomIn 0.25s ease;
        
    }

    /* Close button */
    .img-close {
        position: absolute;
        top: 25px;
        right: 40px;
        font-size: 42px;
        color: #fff;
        cursor: pointer;
        user-select: none;  
    }

    /* Hover cue */
    .modal-img {
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .modal-img:hover {
        transform: scale(1.03);
    }

    /* Closing animation */
    .img-modal.closing .img-modal-content {
        animation: zoomOut 0.2s ease forwards;
    }

    /* Animation */
    @keyframes zoomIn {
        from { transform: scale(0.85); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    @keyframes zoomOut {
        from { transform: scale(1); opacity: 1; }
        to { transform: scale(0.85); opacity: 0; }
    }

 /* #endregion Image Modal */

 
.project-gallery {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.project-gallery-col-blank{
    width: 150px;
    height: 100px;
    border-radius: 30px;
}
.project-gallery-col {
    padding: 5px;
    min-width: 150px;
}
.project-gallery-col img {
    width: 150px;
    height: 100px;
    border-radius: 30px;
    transition: transform 0.5s;
    border: 2px solid black;
}
.project-gallery-col img:hover{
    transform: scale(1.5);
}
/* #endregion Gallery, Row-Scrn & Row-Col */



/* =========================
   PROJECT SECTION
   ========================= */

.project-section{
    margin-top: 30px;
    max-width: 800px;
}

.project-section h2 {
  color: #d4af37;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
}

.project-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-top: 8px;
}

/* Lists */
.project-list {
  list-style: none;
  padding: 0;
}

.project-list li {
  color: #ddd;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.project-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #d4af37;
}

.ingredients {
  margin-top: 10px;
  padding: 0px;
}

.ingredients ul {
  padding-left: 18px;
  margin: 6px 0 0;
  list-style: none;
}

.ingredients li {
  font-size: 0.9rem;
  opacity: 0.85;
  color: #ddd;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.ingredients li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #d4af37;
}

