body {
    margin: 0;
    padding: 0;
    background-color: #e5e1d8;
  }
  
  .html-body {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  

  .main-header {
    width: 100%;
    background-color: #1b4332;
    padding: 12px 0;
    box-sizing: border-box;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .SAMON-logo {
    width: 50px;
    height: 50px;
    background-image: url(Slike/Logo1.png);
    background-size: cover;
    background-position: center;
    margin-right: 16px;
  }
  
  .header-text {
    font-family: "Anybody", sans-serif;
    font-weight: 700;
    color: #ffceea;
    font-size: 32px;
    letter-spacing: -1px;
  }
  

  .hero-section {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-image: url(Slike/PozadinaHero1.png);
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
  }
  
  .hero-title {
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    color: #000000;
    font-size: 72px; 
    line-height: 76px;
    margin: 0 0 20px 0;
  }
  
  .hero-subtitle {
    font-family: "Anybody", sans-serif;
    font-weight: 350;
    color: #000000;
    font-size: 18px;
    line-height: 26px;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.85;
  }
  
  .hero-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .button {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background-color: #1b4332;
    color: #ffffff;
    font-family: "Anybody", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  
  .button:hover {
    background-color: #143326;
  }
  

  .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
  }
  
  .hero-arrow {
    width: 20px;
    height: auto;
    object-fit: contain;
  }
  

  .main-productlist {
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto;    
    display: flex;
    flex-direction: column;
    gap: 100px;       
    padding: 80px 24px;
    box-sizing: border-box;
  }
  
  .product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  

  .product-row.row-reverse {
    flex-direction: row-reverse;
  }
  

  .product-card {
    width: 95%; 
    background-color: #1b4332;
    padding: 45px;
    border-radius: 24px;
    z-index: 1; 
    box-sizing: border-box;
  }
  
  .product-row.row-reverse .product-card {
    text-align: right;
  }
  
  .product-title {
    margin: 0 0 16px 0;
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    color: #ffceea;
    font-size: 36px;
    line-height: 38px;
  }
  
  .product-description {
    margin: 0;
    font-family: "Anybody", sans-serif;
    font-weight: 400;
    color: #ffceea;
    font-size: 18px;
    line-height: 24px;
    opacity: 0.9;
  }
  

  .shirt-image {
    width: 44%;        
    height: auto;
    object-fit: contain;
    z-index: 2;        
    position: relative;
    margin-
  }
  

  .product-row:not(.row-reverse) .shirt-image {
    margin-left: -120px;
  }
  

  .product-row.row-reverse .shirt-image {
    margin-right: -120px;
  }
  
  
.video-section {
    width: 100%;
    max-width: 1100px;       
    margin: 100px auto;       
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;  
    align-items: center;
  }
  
  .video-wrapper {
    width: 100%;
    max-width: 1000px;        
    aspect-ratio: 16 / 9;    
    border-radius: 20px;     
    overflow: hidden;        
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
  }
  
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .footer {
    width: 100%;
    background-color: #1b4332;
    padding: 30px 0;
    box-sizing: border-box;
  }
  
  .footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .SAMON-logo-2 {
    width: 120px;
    height: 120px;
    background-image: url(Slike/Logo1.png);
    background-size: cover;
    background-position: center;
  }
  
  .footer-text-group {
    display: flex;
    flex-direction: column;
  }
  
  .text-5 {
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    color: #ffceea;
    font-size: 24px;
  }
  
  .text-6 {
    font-family: "Anybody", sans-serif;
    color: #ffceea;
    font-size: 14px;
    opacity: 0.7;
  }

  html{
    scroll-behavior: smooth;
  }