@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;  
    background-color: #FFFFFF;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #2C3E50;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ECF0F1;
    border-bottom: 2px solid #F39C12;
    z-index: 1000;
    position: fixed;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2C3E50;
    text-decoration: none;
}
.sidebar{
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.3s;
  }
  .sidebar li{
    width: 100%;
  }
  .sidebar a{
    width: 100%;
    color: black;
  }
  .menu-button{
    display: none;
  }
nav{
    
    background-color: #7F8C8D;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 80px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
    transition: 0.5s;
}
nav a:hover{
    background-color: #F39C12;
    text-shadow: 1px 1px 3px #1A242F;
    
    
} 

nav li:first-child{
    margin-right: auto;
    font-size: 25px;
}
.cta {
    padding: 10px 20px;
    background-color: #F39C12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    font-weight: bold;
}

.cta:hover {
    background-color: #D35400;
}
/* Hero Section Styles */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://example.com/hero-background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 15px 30px;
    background-color: #F39C12;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #D35400;
}

.btn-secondary {
    padding: 15px 30px;
    background-color: #2C3E50;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: #1A242F;
}
/* Services Section Styles */
.services {
    padding: 60px 20px;
    background-color: #ECF0F1;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
    font-weight: bold;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #F39C12;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #7F8C8D;
    margin-bottom: 20px;
}

.learn-more {
    text-decoration: none;
    color: #F39C12;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.learn-more:hover {
    color: #D35400;
}
/* About Us Section Styles */
.about-us {
    padding: 80px 20px;
    background-color: #ECF0F1;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1 1 50%;
    padding: 20px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1 1 50%;
    padding: 20px;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #F39C12;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-read-more {
    padding: 12px 25px;
    background-color: #2C3E50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.btn-read-more:hover {
    background-color: #1A242F;
}
/* Solutions Section Styles */
.solutions {
    padding: 80px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #F39C12;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-header p {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

.solution-card {
    background-color: #ECF0F1;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 100%;
    overflow: hidden;
}
.solution-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    
    object-fit: contain;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.solution-icon {
    font-size: 3rem;
    color: #F39C12;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
}
.solution-card p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 80px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #F39C12;
    margin-bottom: 40px;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #ECF0F1;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 1rem;
    color: #7F8C8D;
}
/* Upper Footer Section Styles */
.upper-footer {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 60px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3, .footer-links h3, .footer-contact h3, .footer-social h3 {
    color: #F39C12; /* Orange Headings */
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ECF0F1;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ECF0F1;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #F39C12;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ECF0F1;
}

.footer-contact p i {
    margin-right: 10px;
}

.footer-social .social-icons a {
    text-decoration: none;
    color: #ECF0F1;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #F39C12;
}

.footer-social .social-icons i {
    margin-right: 10px;
}
/* Lower Footer Styles */
.lower-footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #F39C12;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ECF0F1;
}
/* Gallery Section */
.gallery-section {
    padding: 50px 20px;
    background-color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.1);
}
.logo{
    width: 160px;      /* na PC normalny rozmiar */
  height: auto;
  display: block;
}

/* Lower Footer Styles */
.lower-footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #F39C12;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ECF0F1;
}

  /* Product Page Styles */
.product-page {
    display: flex;
    justify-content: center;
    /* Align items to the top so headings and descriptions are not clipped */
    align-items: flex-start;
    /* Use min-height instead of fixed height to prevent content clipping */
    min-height: calc(100vh - 80px);
    background-color: #fff;
    /* Provide space above the content to avoid overlap with the nav bar */
    padding: 100px 20px 20px;
    overflow-x: hidden;
}

/* Product Content Wrapper */
.product-content {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 2000px;
    margin: 0 auto;
    align-items: center;
}

/* Product Image */
.product-image {
    flex: 1.5;
    display: flex;
    margin-right: 0;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* Product Details */
.product-details {
    flex: 2;
    text-align: left;
}

.product-details h2 {
    color: #2C3E50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-details p {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Price and Size Selection */
.price-select {
    margin-bottom: 20px;
}

.price-select h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F39C12;
    margin-bottom: 15px;
}

.size-selection {
    margin-bottom: 20px;
}

.size-selection label {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-right: 10px;
}

.size-selection select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}
#readMoreBtn {
    background-color: #F39C12;
    border-radius: 10px;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    display: block;
    margin-top: 20px;
}

#readMoreBtn:hover {
    background-color: #be7b0e;
}

@media(max-width: 800px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
    }
    .navbar .logo {
        max-width: 120px; /* Reduce the size of the logo on smaller screens */
    }
    .product-content {
        flex-direction: column;
        padding: 20px;
    }

    .product-image {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    /* Ensure images scale correctly on small screens */
    .product-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }
    /* Adjust product headings and text on small screens */
    .product-details h1,
    .product-details h2 {
        font-size: 1.6rem;
        margin-top: 1rem;
    }
    .product-details p {
        font-size: 1rem;
    }

    .price-select h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .size-selection label {
        font-size: 1rem;
    }

    .contact-btn {
        width: 100%;
        padding: 15px;
    }
    .solutions {
        padding: 0 20px; /* Reduce padding for smaller screens */
    }

    .solution-card {
        margin: 0 auto; /* Center the card in small screens if needed */
    }
    .solution-card p {
        font-size: 1rem;
        color: #7f8c8d;
        margin-bottom: 20px;
    }
    .solution-card h3 {
        font-size: 1.5rem;
        color: #2C3E50;
        margin-bottom: 15px;
    }
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }
@media (max-width: 768px){
  .logo{
    width: 120px;
  }
}  
@media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
  }
.thermo-rental img.thermo-img-small{
  width: 160px !important;
  max-width: 160px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}
