  body {
      margin: 0;
      min-height: 100vh;

      background: url("intro_pic/intro.jpg") center center / cover no-repeat;
  }
  /*logo img*/

  .logo-container {
      display: flex;             /* horizontal layout */
      align-items: center;       /* vertically center everything */
      gap: 20px;                 /* space between items */
  }
  .logo-img {
      margin-top: 19px;
      margin-left: 21px;
      width: 75px;
      height: 69px;
  }



  .head img {
      height: 40px;    /* change this to your desired size */
      width: auto;     /* keeps the image proportions */
      border-radius: 8px; /* optional, for rounded corners */
  }
  .head h1{
      text-align: center;
  }
  .button a {
      color: rgb(41, 36, 36);
      text-decoration: none;
      font-weight: bold;
      margin-left: 15px;         /* space between links */
      transition: color 0.3s;
  }

  .button a:hover {
      color: #ff5d79; /* change color on hover */
  }

  nav a {
    color: #ffffff;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: bold;
  }

      .button{
      margin-right: 20px;
  }

  nav a:hover {
    color: #850e0e;
  }

  /*Main*/
  .main-container{
    padding: 0%;
    margin: 0%;
  }

  .main-container h1{
      padding-top: 20px;
      text-align: center;
      color: rgb(29, 124, 10);
      font-size: 60px;
      padding-bottom: 18px;
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
      box-shadow: 0 4px 15px rgb(255 255 255 / 50%);
      width: 485px;
      margin-left: 35%;
      background: black;
      
  }

  /*image */
  .product-card {
    width: 300px;              /* same width for all cards */
    height: 320px;             /* same height */
    border-radius: 16px;
    overflow: hidden;          /* hides overflow when zooming */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* text stays at bottom */
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;   /* prevents shrinking */
    margin-right: 30px;
    background: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 33px
  }

  .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* very important */
    position: absolute;
    top: 0;
    left: 0;

    transition: opacity 0.3s ease;
  }

  .hover-img {
    opacity: 0;
  }

  .product-card:hover .hover-img {
    opacity: 1;
  }

  .product-card:hover .default-img {
    opacity: 0;
  }


  .product-card h4 {
    position: relative;
    z-index: 2;
    color: white;
    margin: 10px;
    font-size: 1rem;
    text-align: left;
  }

  /* dark gradient overlay */
  .product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  }

  .product-card:hover {
    transform: scale(1.15);  /* zoom effect */
    z-index: 10;             /* bring to front */
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  }

  /*Grid*/

  .products-grid {
    display: flex;        /* makes items in a row */
    gap: 10px;
    overflow-x: auto;     /* enables left-right scroll */
    scroll-behavior: smooth;
    position: relative;
    /* Hide scrollbar */
    scrollbar-width: none;
    z-index: 1;
    width: 100%;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .scroll-container {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: visible; 
      margin-top: 130px;
      margin-bottom: 208px;
  }

  /*scroll button*/
  .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);

      /* Put arrows ABOVE the pictures */
      z-index: 9999;

      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;

      background: rgba(0, 0, 0, 0.75);
      color: white;

      font-size: 28px;
      font-weight: bold;

      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

  }

  .scroll-btn.left {
    left: 15px;
  }

  .scroll-btn.right {
      right: 0;
  }

  .scroll-btn:hover {
      background: rgba(0, 0, 0, 0.95);
      color: cyan;
  }
  .h1-logo{
    color: white; margin-top: 38px; margin-left: -8px
  }
  .footer{
       text-align: center;color: rgb(26, 18, 18); 
    margin-top: 60px; 
    background-color: #ce9314;    
    margin-bottom: 0;
  }