@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --main-color: #00a745f3;
    --black: #000000;
    --bg: #007020;
    --border: .1rem solid rgb(1, 34, 0);
}

.burger {
  display: none;  
}

@media (max-width: 999px) {
  .burger {
    display: block;  
  }
}

* {
    font-family: 'Nunito', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
     
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}
html::-webkit-scrollbar-track {
    background: transparent;
}
html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: .5rem;
}

body {
    background: var(--bg);
    position: relative;
}

section {
    padding: 2rem 7%;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}
.heading span {
    color: var(--main-color);
    text-transform: uppercase;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
}
.btn:hover {
    letter-spacing: .2rem;
}

 
.header {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img {
    height: 5.5rem;                
    transform: scale(1.3) translateY(0.35rem);       
    transform-origin: left center;  
    margin-left: -7rem;
}

@media (max-width: 999px) {
  .header .logo img {
    padding-left: 9rem;
  }
}

.header .navbar a {
    margin: 2.5rem;
    font-size: 2.5rem;
    position: relative;
    left: -13rem;
    color: #fff;
}
.header .navbar a:hover {
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}
.header .icons div {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    position: relative;
    margin-left: 2rem;
}
.header .icons div:hover {
    color: var(--main-color);
}

 
.home {
     
    padding-top: 4rem;
  }
  
  .home-image-banner {
     
    margin-top: 2rem !important;
     
    height: 75vh !important;
  }
  
  .hero-text-logo {
     
    margin-top: -6rem !important;
  }
  

.home-image-banner {
    position: relative;
    width: 100%;                    
    height: 65vh;                   
    margin: 0 auto -2rem;            
    background-image: url('images/home-img1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;  
    animation: bannerRotate 9s infinite;
  }
  
  @keyframes bannerRotate {
     
    0%, 49%   { background-image: url('images/home-img1.webp'); }
     
    50%,100%  { background-image: url('images/home-img2.webp'); }
  }
  
   
  .home-text-box {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.514);
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    text-align: center;
    z-index: 2;
  }
  
  .home-title-overlay {
    margin: 0;
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 5.8rem;
    color: #fff;
    text-shadow: 0 0 4px rgba(0,0,0,0.8);
  }
  
  .home-subtitle-overlay {
    margin-top: 1rem;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 3px rgba(0,0,0,0.7);
  }


  
   
.home {
     
    padding-left: 0;
    padding-right: 0;
  }
  
  .home-image-banner {
     
    width: 100vw;
     
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  
   
  .hero-text-logo,
  .history,
  .items,
  .contact {
    padding-left: 7%;
    padding-right: 7%;
  }
  

  
   
  @media (max-width: 1000px) {
    .home-image-banner {
      height: 60vh;
    }
    .home-title-overlay {
      font-size: 2.5rem;
    }
    .home-subtitle-overlay {
      font-size: 2rem;
    }
    .home-text-box {
      padding: 1rem 1.5rem;
    }
  }

   
.home-image-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 65vh;
    background: url('images/home-img1.webp') center/cover no-repeat;
    z-index: 1;
  }
  
 
.hero-text-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: -6rem auto 0;
    width: 100%;
    padding: 2rem 7%;
    background: transparent;
    overflow: visible;
  }
  .hero-text-logo::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8rem;
    background: var(--bg);
    border-radius: 5rem 5rem 0 0;  
    z-index: -1;
  }
  
   
  .hero-text-logo .text-box h3 {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 3rem;
    color: #fff;
    margin: 0;
  }
  
   
  .hero-text-logo .hero-logo {
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
  .hero-text-logo .hero-logo img {
    max-height: 12rem;          
    width: auto;
    position: relative;
    top: -2rem;                 
  }
  
 
.hero-text-logo {
    display: flex;
    align-items: center;
    gap: 2rem;                
    background: var(--bg);
    height: 22rem;            
    padding: 0 11%;            
  }
  
  .hero-text-logo .text-box {
    background: transparent;  
    padding: 1rem 2rem;       
    max-width: 1100px;
    margin: 0;                
    padding-left: 20rem;
    padding-top: 5rem;
  }
  
  .hero-text-logo .text-box h3 {
    font-family: 'Nunito', serif;
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1.1;         
    margin: 0 0 1.1rem 0;
    color: #fff;              
    white-space: nowrap;
  }
  
  .hero-text-logo .hero-logo {
    margin-left: auto;        
  }
  
  .hero-text-logo .hero-logo img {
    max-height: 43rem;        
    width: auto;
  }
  
  .hero-text-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg);
    height: 22rem;
    padding: 0 7%;
    
     
    border: 2px solid rgba(0, 0, 0, 0.3);   
    border-radius: 6rem 6rem 0 0 !important;                      

   
  }
  
   
  @media (max-width: 1190px) {
     
    .hero-text-logo {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      margin: -6rem auto 2rem !important;    
      padding: 0 !important;                  
      width: 100% !important;
      background: transparent !important;     
      
    }
  
     
    .hero-text-logo::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 14rem !important;               
      background: var(--bg) !important;
      border-radius: 2rem 2rem 0 0 !important; 
      z-index: -1;
    }
  
     
    .hero-text-logo .text-box {
      width: 100% !important;
      text-align: center !important;
      margin: 19rem 0 0 !important;            
      padding: 0 !important;
    }
    .hero-text-logo .text-box h3 {
      font-family: 'Nunito', serif !important;
      font-weight: 500 !important;
      font-size: 2.3rem !important;           
      line-height: 1.8 !important;
      color: #fff !important;
      margin: 0 !important;
      white-space: normal !important;
    }
  
     
    .hero-text-logo .hero-logo {
      margin: -4rem auto 0 !important;        
      z-index: 10 !important;
    }
    .hero-text-logo .hero-logo img {
      position: relative !important;
      top: 0rem !important;                 
      max-height: 23rem !important;           
      width: auto !important;
    }

    .hero-text-logo,
.hero-text-logo::before {
  border: none !important;
}
  }
  
   
.hero-text-logo .text-box .hero-tagline {
  font-family: inherit;
  font-size: 2.2rem;
  color: #fff;
  margin: 0rem 0 0;
  text-align: center;
  opacity: 0.85;
  white-space: nowrap;
}

 
@media (max-width: 768px) {
  .hero-text-logo .text-box .hero-tagline {
    font-size: 2.3rem;
    margin-top: 0.3rem;
  }
}

 
.history {
    padding: 4rem 7%;
    background: #fff;
  }
  
  .history-title {
    font-size: 3.8rem;
    color: var(--black);
    text-align: left;
    margin: 0 auto 2rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    line-height: 1.2;
    font-family: Lora;
    font-weight: 600;
  }
  
  .history-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .history-text {
    flex: 1 1 45%;
    color: #333;
    font-size: 2rem;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word; 
  }
  
  .history-text p {
    margin-bottom: 1.5rem;
  }
  
  .history-image {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .history-image img {
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
   
  @media (max-width: 1100px) {
    .history-content {
      flex-direction: column;
      margin-top: 0rem;
    }
    .history-title {
      font-size: 2.9rem;
      margin-top: 2rem;
    }
    .history-text {
      flex: 1 1 100%;
    }
    .history-image {
      flex: 1 1 100%;
      margin-top: 2rem;
    }
  }
  
  
  a.learn-more {
    display: inline-block;
    position: relative;
    min-width: 31rem;
    padding: 0.75rem 2rem 0.75rem 5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: inherit;
    font-family: inherit;
    color: #282936;
    text-decoration: none;
    margin-top: 3rem;
  }
  
  a.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: #282936;
     
    border-radius: 1.5rem;
  }
  
  a.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 50%;
    left: 0.75rem;
    width: 1.125rem;
    height: 0.15rem;
    background: none;
    transform: translateY(-50%);
  }
  
  a.learn-more .circle .icon.arrow::before {
    content: "";
    position: absolute;
    top: -0.35rem;
    right: 0;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  
  a.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 50%;
    left: 4rem;
    transform: translateY(-50%);
    color: #282936;
    font-weight: bold;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
  }
  
  a.learn-more:hover .circle {
    width: 87%;
  }
  
  a.learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, -50%);
  }
  
  a.learn-more:hover .button-text {
    color: #fff;
  }
  
 
 
.history-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;         
  margin: 2rem 0;      
  align-items: stretch;  
}

.history-products .product-tile {
  flex: 1 1 50%;        
  max-width: 30rem;     
  background: #eeeeee;  
  border-radius: .5rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background .3s, transform .3s;
  padding: 1rem;        
  display: flex;          
  flex-direction: column;  
}

.history-products .product-tile img {
  width: 100%;
  height: 28rem;          
  object-fit: contain;    
  display: block;
}
.history-products .product-tile h4 {
  font-size: 2.5rem;    
  font-family: 'Lora', serif;
  font-weight: 600;
  padding-top: 1rem;
  margin-top: auto;       
}

.history-products .product-tile .product-kg {
  font-size: 1.8rem;    
}

.history-products .product-tile h4,
.history-products .product-tile .product-kg {
  text-align: center;   
  margin: .5rem 0;      
}

.history-products .product-tile:hover {
  transform: scale(1.03);
  background: rgba(0, 167, 69, 0.1);  
}

 
@media (max-width: 768px) {
  .history-products {
    justify-content: center;
    align-items: stretch;         
  }
  .history-products .product-tile {
    flex: 0 0 70%;                
    max-width: none;
    margin: 1rem auto;            
    display: flex;                
    flex-direction: column;
    justify-content: flex-start;
    min-height: 20rem;            
  }
  .history-products .product-tile h4 {
    font-size: 2.5rem;     
  }
  .history-products .product-tile .product-kg {
    font-size: 1.6rem;   
  }
  .history-products .product-tile img {
    width: 100%;
    height: auto;                 
    max-height: none;             
    margin-bottom: 1rem;
  }
}

    .header .navbar {
      
     border-left: 2px solid var(--bg);
     border-top-left-radius: 0.5rem;
     border-bottom-left-radius: 0.5rem;
     }

    .hamburger {
        cursor: pointer;
      }
      .hamburger input {
        display: none;
      }
      .hamburger svg {
        height: 6em;
        transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
      }
      .line {
        fill: none;
        stroke: white;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 3;
        transition:
          stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
          stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
      }
      .line-top-bottom {
        stroke-dasharray: 12 63;
      }
      .hamburger input:checked + svg {
        transform: rotate(-45deg);
      }
      .hamburger input:checked + svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
      }

 
.about {
    position: relative;
}
.about .row {
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.about .row .images {
    flex: 1 1 45rem;
}
.about .row .content {
    flex: 1 1 45rem;
    padding: 2rem;
}
.about .row .content h3 {
    font-size: 3rem;
    color: #fff;
}
.about .row .content p {
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}

 
 
 
.about {
  position: relative;
  background-color: #fff !important;

   
  padding-top: 4rem;       
  padding-bottom: 12rem;    
  padding-left: 4%;        
  padding-right: 4%;       
}

 
.about-title {
  padding-top: 10rem; 
  font-size: 4.4rem;
  color: var(--about-title-color);
  text-align: center;
  margin-bottom: 3rem;
  font-family: Lora;
  font-weight: 500;
}

 
 
 
.about-grid {
  display: grid;
   
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

 
.about-item {
  box-sizing: border-box;

   
  padding-top: 1rem;       
  padding-bottom: 1rem;    
  padding-left: 1rem;      
  padding-right: 1rem;     
}

 
 
 
.about-text p {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  line-height: 2;
  color: var(--about-text-color);
  text-align: justify;

   
  padding-top: 2rem;       
  padding-bottom: 2rem;    
  padding-left: 1rem;      
  padding-right: 1rem;     
}

 
.about-text {
  margin-left: 1rem;       
  margin-right: 1rem;      
}

 
 
 
 
.about-slider {
  grid-column: 2;
  width: 400px;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: .5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  animation: aboutSlider1 6s infinite;

   
  justify-self: end;
  margin-left: 2rem;       
}

@keyframes aboutSlider1 {
  0%, 49.99%   { background-image: url('images/about-img1.webp'); }
  50%, 100%    { background-image: url('images/about-img2.webp'); }
}

 
 
 
 
.about-slider-2 {
  grid-column: 1;
  width: 700px;
  height: 100%;
  margin-right: 0px;      
  z-index: 1;
  background-size: cover;
  background-position: center;
  border-radius: .5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  animation: aboutSlider2 6s infinite;
  margin-left: 7rem;
}

@keyframes aboutSlider2 {
  0%, 49.99%   { background-image: url('images/about-img3.webp'); }
  50%, 100%    { background-image: url('images/about-img4.webp'); }
}

.text-bottom {
  text-align: center;
  position: absolute;
  bottom: 2rem;            
  left: 0;         
  right: 0;        
  width: 100%;
  font-size: 3.5rem;
  font-family: 'Lora', serif;
  color: #000;
  padding-top: 4rem;
  padding-bottom: 1rem;
  font-weight: 500;
}

 
 
 
@media (max-width: 1300px) {
   

   
  .about-title {
    font-size: 3.5rem;       
    margin-bottom: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem 2rem;            
  }

 .about-slider {
    display: none;
  }

  .about-text p {
    font-size: 2.1rem;       
    line-height: 1.6;        
    padding: 0.5rem 1rem;    
    margin-bottom: 0.5rem;   
    text-align: left;        
    text-align: justify;
  }

   
  .about-slider,
  .about-slider-2 {
    grid-column: 1;
    width: 100%;
    height: 20rem;           
    margin: -3.5rem 0;        
  }
}

@media (max-width: 400px) {
  .text-bottom {
    font-size: 1.6rem;
    padding-top: 1rem;
  }
}

@media (max-width: 768px) {
  .text-bottom {
    font-size: 3rem;
    padding-top: 2rem;
  }
}

 
 

.product-intro {
  font-family: 'Lora', serif;
  font-size: 3.7rem;
  color: #000;
  text-align: center;
  margin: 0;
  font-weight: 500;
   font-style: italic;
}

.items .box-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto;
  max-width: 1000px;
}

.items .box {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 2.5rem;
  border: 1px solid #ddd;
  border-radius: 15px;
  text-align: left;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.items .box:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.items .box .product-main-image {
  width: 200px;
  height: auto;
  min-width: 200px;
  object-fit: contain;
  margin-right: 3rem;
  border-radius: 10px;
}

.product-details-container {
  flex: 1;
}

.items .box h3 {
  font-family: 'Lora', serif;
  font-size: 4.2rem;
  color: #000;
  margin: 0 0 3rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

 
.sizes-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
  justify-content: center;  
}

.size-tile {
   
   
  width: 25rem;  
  height: 25rem;  
  display: flex;  
  flex-direction: column;  
  justify-content: center;  
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.size-tile:hover {
  border-color: var(--main-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.size-tile-header {
  padding: 1rem;
  text-align: center;
}

.size-tile-header img {
  width: 190px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

.size-tile-header span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}

.size-tile-details {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fff;
  padding: 0 1.5rem;
  border-top: 1px solid #eee;
}

.size-tile-details p {
  font-size: 1.6rem;
  margin: 0.5rem 0;
  color: #333;
}

.size-tile.open .size-tile-details {
  max-height: 100px;
  opacity: 1;
  padding: 1.5rem;
}

 
.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  gap: 2rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.items .box .ingredients {
  font-size: 2rem;
  line-height: 1.5;
  color: #555;
  margin-top: 0;
}

 
.indicator {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 2.1rem;
  color: #00570e;
  margin-top: 0;
  padding: 0.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-style: bold;
  transition: color 0.2s;
  flex-shrink: 0;
}
.indicator:hover {
  color: var(--main-color);
}
.indicator i {
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.indicator i.rotated {
  transform: rotate(180deg);
}

 
.nutrition-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out, margin 0.4s ease-out;
  padding: 0 1rem;
  margin-top: 0;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}
.nutrition-details.open {
  max-height: 350px;
  opacity: 1;
  padding: 1.5rem;
  margin-top: 1rem;
}
.nutrition-details p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
 
.nutrition-details .storage-info-inline {
  font-style: italic;
  color: #444;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #ddd;
}

 
@media (max-width: 768px) {
  .items .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .items .box .product-main-image {
    width: 70%;
    max-width: 250px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .product-details-container {
    width: 100%;
  }
  .items .box h3 {
    font-size: 3.5rem;
  }
  .sizes-selector {
    justify-content: center;
  }
  .details-header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

 
 
 

.contact {
  padding: 4rem 7%;
  background: #fff;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  flex: 1 1 60%;               
}

.contact-right {
  flex: 1 1 35%;               
}

 
 
 

.contact-info-box {
  background-color: var(--bg);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 100%;                 
}

.contact-info-box h3 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info-box p {
  font-size: 2.2rem;
  color: #eee;
  margin-bottom: 1rem;
  line-height: 1.6;
}

 
 
 

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-link {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.contact-link:hover {
  color: var(--main-color);
  transform: translateX(3px);
}

.contact-link i {
  color: var(--main-color);
  font-size: 2.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover i {
  color: #fff;
  transform: scale(1.1);
}

.contact-link.left {
  justify-content: flex-start;
}

.contact-link.right {
  justify-content: flex-end;
}

 
 
 

.contact-map {
  margin-top: 3rem;
  width: 100%;                 
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
}

 
 
 

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cooperation-text {
  font-family: 'Lora', serif;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #000;
  line-height: 1.3;
}

.contact-image {
  width: 100%;                  
  max-width: 700px;            
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

 
.github-credit {
  background: var(--bg);            
  text-align: center;
  padding: 0.3rem 0;
  margin-top: 1rem;
  border-radius: 0.3rem;
  width: 100%;
}

.github-credit a {
  color: var(--bg);
  opacity: 0.4;                     
  font-size: 1.2rem;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.github-credit a:hover {
  color: var(--main-color);
  opacity: 0.3;                     
  text-decoration: underline dotted;
}

 
 
 

 
@media (min-width: 1200px) {
  .contact-columns {
    gap: 5rem;
  }
  
  .contact-left {
    flex: 1 1 65%;             
  }
  
  .contact-right {
    flex: 1 1 30%;             
  }
  
  .contact-image {
    width: 85%;                
    max-width: 550px;
  }
}

 
@media (max-width: 1000px) {
  .contact {
    padding: 3rem 5%;
  }
  
  .contact-columns {
    flex-direction: column;
    gap: 4rem;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .contact-info-box {
    width: 100%;
    padding: 2.5rem;
    border-radius: 1rem;
    box-sizing: border-box;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .contact-link.left,
  .contact-link.right {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-map {
    margin-top: 2rem;
    width: 100%;
  }

  .contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
  }

  .cooperation-text {
    text-align: center;
    font-size: 3.2rem;
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .contact-image {
    width: 70%;                
    max-width: 400px;
    margin: 1rem auto;
  }
}

 
@media (max-width: 768px) {
  .contact {
    padding: 2rem 3%;
  }
  
  .contact-columns {
    gap: 3rem;
  }
  
  .contact-info-box {
    padding: 2rem;
  }
  
  .contact-info-box h3 {
    font-size: 2.8rem;
  }
  
  .contact-info-box p {
    font-size: 1.8rem;
  }
  
  .contact-link {
    font-size: 1.8rem;
    gap: 0.8rem;
  }
  
  .contact-link i {
    font-size: 2.4rem;
  }
  
  .contact-map iframe {
    height: 300px;
  }
  
  .cooperation-text {
    font-size: 2.6rem;
  }
  
  .contact-image {
    width: 85%;                
    max-width: 350px;
  }
}

 
@media (max-width: 480px) {
  .contact {
    padding: 1.5rem 2%;
  }
  
  .contact-info-box {
    padding: 1.5rem;
  }
  
  .contact-info-box h3 {
    font-size: 2.4rem;
  }
  
  .contact-info-box p {
    font-size: 1.6rem;
  }
  
  .cooperation-text {
    font-size: 2.2rem;
    padding: 0.5rem;
  }
  
  .contact-image {
    width: 90%;                
    max-width: 300px;
  }
  
  .contact-row {
    gap: 1.5rem;
  }
}

 
.contact .row {
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}
.contact .row .content {
    flex: 1 1 45rem;
    padding: 2rem;
}
.contact .row .content h3 {
    font-size: 4rem;
    color: #fff;
    padding-bottom: 0.1rem;
}
.contact .row .content p {
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}
.contact .row .content .info p {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: #ccc;
    padding: .5rem 0;
}
.contact .row .content .info i {
    font-size: 2rem;
    color: var(--main-color);
    margin-right: 1rem;
}
.contact .row form {
    flex: 1 1 45rem;
    padding: 2rem;
}
.contact .row form .box {
    width: 100%;
    margin: 1rem 0;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--black);
    background: #fff;
    border-radius: .5rem;
    text-transform: none;
}
.contact .row form textarea {
    height: 15rem;
    resize: none;
}
.contact .row form .btn {
    width: 100%;
    text-align: center;
}
.contact .row form .btn:hover {
    letter-spacing: .2rem;
}

.info .contact-link {
    font-size: 2rem;        
  }

  :root {
    --top-contact-color: #ffffff;
  }
  
  .top-contact {
    position: absolute;
    top: 1.4rem;
    right: 7.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 2000;
  }
  
  .top-contact-link {
    color: var(--top-contact-color);
    font-size: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .top-contact-link i {
    font-size: 2rem;
    color: var(--top-contact-color);
    transition: color 0.3s ease;
  }
  
  .top-contact-link:hover {
    transform: translateX(-5px) scale(1.05);
    color: var(--main-color);
  }
  
  .top-contact-link:hover i {
    color: var(--main-color);
  }
  
  @media (max-width: 1190px) {
    .top-contact {
      display: none;
    }
  }
  
 
.footer {
    background: #eeeeee;
    color: #000;
    padding: 3rem 2rem;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
    text-align: center;
    border: 1px solid #444444;       
    border-radius: 6px;           
    box-shadow: 0 0 10px rgba(0,0,0,0.05);  
  }
  
  .footer-title {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    color: #111;
  }
  
  .footer-subtitle {
    font-family: 'Lora', serif;
    font-size: 3.5rem !important;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 300 !important;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
  }
  
  .footer-left {
    flex: 1 1 320px;
    max-width: 400px;
    font-size: 2.2rem; 
    padding-left: 1rem;
    margin-left: -1.5rem;
    margin-top: 1rem; 
  }
  
  .footer-left p {
    margin: 1rem 0;
  }
  
  .footer-left p strong {
    font-size: 2.2rem;
  }
  
  .footer-left .contact-link {
    margin-top: 1.3rem;  
    color: var(--bg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.4rem;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  
  .footer-left .contact-link:hover {
    color: #000;
    transform: scale(1.05);
  }

  .footer-left .contact-link:hover i {
  color: #000;   
  transform: scale(1.1);
}
  
  .footer .btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--main-color);
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  .footer .btn:hover {
    background-color: #188c00;
    transform: scale(1.05);
  }
  
  .footer-map {
    flex: 1 1 500px;
    max-width: 650px;
    display: flex;
    justify-content: center;
  }
  
  .footer-map iframe {
    width: 100%;
    height: 300px;
    max-width: 100%;
    border: 0;
    height: 380px !important;
  }

  .footer-subtitle.emphasized {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111;
  }
  
   
  .fancy-btn {
    color: var(--bg);
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--bg);
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    margin-top: 2rem;
  }
  
  .fancy-btn:hover {
    color: white;
  }
  
  .fancy-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: var(--bg);
    z-index: -1;
    transition: all 1s;
  }
  
  .fancy-btn:hover::before {
    width: 160%;
  }
  
  .footer-map iframe {
    width: 100%;
    height: 300px;
    max-width: 100%;
    border: 1px solid #000;  
    border-radius: 4px;      
  }
  
 
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: var(--main-color);
    width: 5rem; height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top i {
    font-size: 2.5rem;
    color: #fff;
}

 
@keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-5px); }
    50%  { transform: translateX(5px); }
    75%  { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
@keyframes pop {
    0%   { transform: scale(0); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

 
@media (max-width: 1000px) {
    html { font-size: 55%; }
    .header { padding: 1.5rem 2rem; }
    section   { padding: 2rem; }
    .newsletter .newsletter-form { flex-direction: column; }
    .newsletter .newsletter-form .box,
    .newsletter .newsletter-form .btn { width: 100%; }
}

@media (min-width: 1200px) {
    .home .content { text-align: left; padding-left: 0; }
}

/* ---------------------------
   BURGER
----------------------------*/
@media (max-width: 1000px) {
    #menu-btn { display: inline-block; }
    .header .navbar {
        position: absolute; top: 100%; right: -100%;
        background: #fff; width: 35rem;
        height: calc(100vh - 9.5rem);
    }
    .header .navbar.active { right: 0; }
    .header .navbar a {
      display: block;       
      margin: 4rem 0rem 1.5rem 15rem; 
      padding: .1rem 0;             
      font-size: 2.5rem;
      color: var(--black);
    }
    .header .navbar a.active,
    .header .navbar a:hover {
      border-bottom: .2rem solid var(--main-color);
    }
  }

/* ---------------------------
   TEKSTOWY NAPIS W HEADERZE
----------------------------*/

 
.header .header-text {
    display: none;
    font-family: 'Lora', serif;     
    font-weight: 500;
    font-size: 3.5rem;              
    color: #fff;
    white-space: nowrap;
  }
  
 
@media (max-width: 999px) {
   
  .header .header-text {
    display: none !important;
  }
   
  .header .logo {
    display: block !important;
    margin: 0 auto !important;
    padding-right: 5rem;
  }
   
  .header .icons,
  .header .navbar {
    margin-top: 0 !important;
  }
}
  
   
.info .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition:
      background-color 0.3s,
      color 0.3s,
      transform 0.2s;  
  }
  
  .info .contact-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--main-color);
    transform: scale(1.05);  
  }
  
  .info .contact-link:hover i {
    color: var(--main-color);
  }

   
.mobile-shortcuts {
    display: none;
  }
  
@media (max-width: 1190px) {
  .mobile-shortcuts {
    display: flex;
    justify-content: center;
     
    gap: 5rem; 
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  .mobile-shortcuts .shortcut-icon {
     
    width: 8rem;
    height: 8rem;
     
    background: #8b8b8b; 
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
     
    font-size: 5rem; 
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }
  .mobile-shortcuts .shortcut-icon:hover {
    transform: scale(1.1);
    background: #555;  
  }
}

.italic-year {
  font-style: italic;  
  font-family: inherit;  
}
  
 
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.flag-icon {
  width: 30px;  
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;  
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: slideDown 0.3s ease-out;
}

.language-dropdown img {
  display: block;
  width: 50px;  
  height: auto;
  margin: 10px 0;
  margin-left: -0.6rem;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.language-dropdown img:hover {
  opacity: 0.8;
}

 
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


 
@media (min-width: 999px) {
  .language-switcher {
    position: fixed;  
    Right: 20px;  
    flex-direction: column;  
    gap: 12px;  
    z-index: 2000;  
  }

  .language-dropdown {
    display: flex !important;  
    flex-direction: column;  
    position: static;  
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    max-height: 120px;  
    overflow: hidden;  
  }

  .language-dropdown img {
    width: 40px;  
    margin: 0.8rem;
  }

  #current-flag {
    display: none;  
  }
}


 
@media (max-width: 999px) {
  .language-switcher {
    position: fixed;
    top: 10px;
    left: 20px;
    margin-left: 0 !important;
    z-index: 2000;
    flex-direction: row;
    gap: 10px;
    overflow: visible;
  }

  #current-flag {
    width: 50px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    z-index: 11;
  }

   
  .arrow-icon {
    font-size: 15px;  
    color: #fff;  
    cursor: pointer;
    position: absolute;
    bottom: -20px;  
    left: 45%;
    transform: translateX(-50%);
    transition: transform 0.2s ease;
    z-index: 12;
  }

   
  .language-switcher:hover .arrow-icon {
    transform: translateX(-50%) translateY(2px);
  }

  .language-dropdown {
    top: 50px;  
    left: 0;
    padding: 10px;
    display: none;
    flex-direction: column;
    z-index: 3000;
  }

  .language-switcher.active .language-dropdown {
    display: flex;
  }
}

@media (min-width: 1300px) {
  .arrow-icon {
    display: none !important;  
  }
}

.about-slider,
.about-slider-2,
.home-image-banner {
  background-color: var(--bg);  
}

.home-text-box { background: none !important; }

.home-title-overlay {
  font-weight: 700 !important;
  text-shadow:
    -2px -2px 2px rgba(0, 0, 0, 1),
    2px -2px 2px rgba(0, 0, 0, 1),
    -2px 2px 2px rgba(0, 0, 0, 1),
    2px 2px 2px rgba(0, 0, 0, 1),
    0 0 6px rgba(0, 0, 0, 0.8);
}

.home-subtitle-overlay {
  font-weight: 800 !important;
  text-shadow:
    -2px -2px 2px rgba(0, 0, 0, 0.9),
    2px -2px 2px rgba(0, 0, 0, 0.9),
    -2px 2px 2px rgba(0, 0, 0, 0.9),
    2px 2px 2px rgba(0, 0, 0, 0.9),
    0 0 4px rgba(0, 0, 0, 0.7);
}

.home-subline-light {
  display: block;
  font-size: 4.8rem;
  font-weight: 600;
  font-family: 'Lora', serif;  
  opacity: 1;
  margin-top: 0.3rem;
}

@media (max-width: 999px) {
    .home-text-box {
    width: 90vw;            
    max-width: none;        
    padding: 2rem 2.5rem;   
  }
  .home-title-overlay {
    font-size: 3.5rem;  
  }
   .home-subtitle-overlay {
    font-size: 3.2rem;  
  }
}

@media (min-width: 1300px) {
  body.page-kontakt .language-switcher {
    top: 5px;      
    right: 10px;   
  }
}

.cooperation-phone {
  display: inline-flex;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  margin-right: 2rem;
  margin-top: -1rem;
}

.cooperation-phone:hover i {
  color: var(--main-color) !important;
}

 
.nutrition-sizes-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #ddd;
}

.nutrition-sizes-info p {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.nutrition-sizes-info ul {
  list-style-type: none;  
  padding-left: 0;
  font-size: 1.6rem;
}

.nutrition-sizes-info ul li {
  margin-bottom: 0.5rem;
}


 

 
.nutrition-sizes-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #ddd;
}

.nutrition-sizes-info p {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.nutrition-sizes-info ul {
  list-style-type: none;  
  padding-left: 0;
  font-size: 1.6rem;
}

.nutrition-sizes-info ul li {
  margin-bottom: 0.5rem;
}


 
 
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.4s;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

 
.lightbox-modal {
  background-color: #fff;
  padding: 1.5rem;  
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
   
  display: flex;  
  animation: zoomIn 0.4s;
}

 
.lightbox-content {
  display: block;
   
  width: 600px;          
  height: 600px;         
  object-fit: cover;     
  border-radius: 0.5rem; 
}

 
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #333;
  font-size: 3rem;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1;
}

 

.lightbox-close:hover,
.lightbox-close:focus {
  color: #000;
  text-decoration: none;
}

 
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

 
@media (max-width: 700px) {
  .lightbox-modal {
    padding: 1rem;
  }
  .lightbox-content {
    width: 95%;
  }
}

 

 
 
.product-intro-container {
  display: grid;
   
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
   
  margin: 4rem auto 6rem;
  padding: 0 2rem;
  max-width: 2000px;
}

.intro-image-left {
  justify-self: start;  
}

.intro-image-right {
  justify-self: end;  
}


.product-intro-container img {
  height: 180px;  
  width: auto;
}

 
@media (max-width: 992px) {
 
.product-intro-container {
  display: flex;
  flex-direction: column-reverse;  
  align-items: center;     
  gap: 3rem;               
  margin: 4rem auto 6rem;
}

.intro-image {
  height: 180px;  
  width: auto;
}
}

 

 

 
.hero-left-image {
  position: absolute;  
  left: 4rem;          
  bottom: -1rem;       
  z-index: 5;          
}

.hero-left-image img {
  height: 15rem;       
  width: auto;         
}

@media (max-width: 768px) {
  .hero-left-image {
    left: 1rem;
    bottom: -2rem;
  }
  .hero-left-image img {
    height: 13rem;     
    padding-bottom: 2rem;
  }
}

 
 
 

 
body.page-o-nas {
  background: #fff;
}

 

 
 
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;  
  max-width: 600px;  
  margin: 0 auto;
  margin-bottom: 2rem;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
    z-index: 2;
    background-color: #fff;
}

.about-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

 
@media (max-width: 768px) {
  .about-gallery {
    grid-template-columns: 1fr;
    max-width: 400px
  }
}








 
@media (max-width: 700px) {
  .lightbox-modal {
     
    padding: 1rem;
  }
  
  .lightbox-content {
     
    width: 90vw;   
    height: 90vw;  
  }
}

@media (max-width: 480px) {
   
  .hero-text-logo .text-box h3 {
    font-size: 1.9rem !important;
    line-height: 1.4 !important;
    padding: 0 1rem;
  }

   
  .hero-left-image {
    bottom: 2.5rem;  
    left: 0.5rem;   
  }

  .hero-left-image img {
    height: 10rem;  
  }
}

@media (min-width: 1101px) { 
  .home-title-overlay {
    white-space: nowrap; 
  }
}

#productIntro {
    margin-top: 4rem;  
}

.footer-address .firm-name-in-footer {
     
    font-size: 2.3rem; 
    
     
    display: block; 
    
     
    margin-bottom: 0.5rem; 

     
    font-family: 'Lora', serif;
    font-weight: 600;
}

.footer-map {
    height: 440px;  
}

 
.footer-map iframe {
    width: 100%;
     
    height: 100% !important; 
    display: block;
}

 
.hide-on-mobile {
    /* Ustaw czcionkę na taką, jakiej używało home-subtitle-overlay 
       (prawdopodobnie 'Lora' lub 'Nunito', ale sprawdź dokładniej,
       jeśli to nie jest właściwa) */
    font-family: 'Lora', serif; 
    
     
    color: white; 
    
     
    font-size: 3.8rem; 
}


 
@media (max-width: 500px) {
    .hide-on-mobile {
        display: none !important; 
    }
}

 
@media (min-width: 1000px) and (max-width: 1190px) {
    
    .header .navbar {
         
        margin-left: 15.1rem; 
        
         
        /* .header .navbar a {
            margin: 2rem 1.5rem; 
        } */
    }

        .header .logo img {
        width: 13rem;  
        height: 5rem;
      }


}

@media (min-width: 1000px) { 
     
    
     
    .arrow-icon {
        /* Przesuwa strzałkę w górę o 0.4rem (około 4px). 
           Jeśli to za dużo/za mało, dostosuj tę wartość. */
          display: none !important; 
    }
}

 

 

 
@media (max-width: 1299px) {
    
    .top-contact-link {
        font-size: 1.8rem;  
        padding: 0.1rem 0.8rem;  
    }

    /* Jeśli używasz ikon Font Awesome (fas fa-...), warto też je zmniejszyć, 
       jeśli są większe niż czcionka tekstu (niekonieczne, jeśli dziedziczą) */
    .top-contact-link i {
        font-size: 1.8rem; 
    }
}

 




@media (max-width: 1510px) and (min-width: 1191px) {
  /*
    Ten blok stylów zadziała tylko dla ekranów o szerokości
    pomiędzy 1191px a 1450px, czyli dokładnie tam,
    gdzie pojawia się problem z ucinaniem żółwia.
  */

  .hero-text-logo .text-box h3 {
    font-size: 2.6rem;  
    margin-left: -20rem;
  }

  .hero-text-logo .hero-logo img {
    max-height: 43rem;  
    margin-left: 2rem;
  }

  .hero-left-image img {
    height: 10rem;  
    padding-bottom: 1rem;
    margin-top: 12rem;
  }

  .hero-text-logo {
     padding: 0 5%;  
  }
}

 
 
 

 
.company-details {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

 
.company-details h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
     
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #a8e063;
    padding-bottom: 5px;
    display: inline-block;
}

 
.address-nip-wrapper {
    display: flex;
     
    align-items: flex-start;
     
    justify-content: space-between;
    margin-top: 15px;  
}

 
.company-details p {
    font-family: 'Lora', serif;
     
    font-size: 2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;  
}

 
.address-details {
     
    flex-grow: 1; 
}


 
.nip-display {
     
    flex-shrink: 0;
    font-weight: 700;  
    font-size: 1.1rem;  
    color: #2c3e50;  
     
    margin-left: 20px; 
     
    text-align: right; 
    
     
    margin-bottom: 5px; 
}


 
 
 

@media (max-width: 768px) {
     
    .address-nip-wrapper {
        flex-direction: column;
        align-items: flex-start;  
    }
    
     
    .nip-display {
        margin-left: 0;
        margin-top: 10px;  
        text-align: left;
    }
}

 

 

 
.burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;  
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

 

 

/*
================================================
  Styl dla białego logo na dole strony Kontakt
================================================
*/

.contact-logo-bottom {
   

   
  width: 100%; 
  
   
  max-width: 400px; 

   
  height: auto; 
  
   
  padding-top: 2rem; 
  
  /* Kluczowa właściwość: To ona wypycha logo na sam dół prawej kolumny,
     aby zrównało się z mapą. NIE ZMIENIAJ jej, jeśli chcesz zachować wyrównanie. */
  margin-top: auto; 
}


/*
==============================================================
  Dostosowanie logo dla widoku mobilnego (ekrany poniżej 1000px)
==============================================================
*/

@media (max-width: 1000px) {
  .contact-logo-bottom {
    /* Na mobilnych, gdy kolumny są jedna pod drugą, zamieniamy
       automatyczny margines na stałą wartość, aby zachować odstęp.
       Możesz edytować tę wartość. */
    margin-top: 4rem; 
    
     
    padding-top: 0; 
  }
}

/* Przycięcie banera na stronie głównej na urządzeniach mobilnych */
@media (max-width: 768px) {
  .home-image-banner {
    height: 35vh !important; /* mniejsza wysokość banera */
    background-position: center 30% !important; /* przesunięcie w dół (obcina górę) */
    overflow: hidden;
  }

  /* Opcjonalnie – dopasowanie tekstu, by nie zasłaniał dolnej sekcji */
  .home-text-box {
    top: 55% !important;
  }
}