/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blue-bg {
    background-color: #0a4d8c;
    color: white;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-yellow {
    background-color: #FFA500;
    color: white;
}

.btn-yellow:hover {
    background-color: #e69500;
}

.btn-outline {
    border: 2px solid #FFA500;
    color: #FFA500;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #FFA500;
    color: white;
}

.btn-yellow-sm {
    background-color: #FFA500;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 40px;
}

/* Desktop Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

.nav-links a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFA500;
}

.contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    font-weight: 500;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #002D62;
}

.hero p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

/* Strategy Section */
.strategy {
    padding: 60px 0;
}

.strategy h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.strategy p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.strategy-list {
    margin-bottom: 30px;
}

.strategy-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Assortment Section */
.assortment {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.assortment h2 {
    text-align: center;
    font-size: 2rem;
    color: #002D62;
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.assortment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.assortment-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
}

.assortment-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.card-content h3 {
    margin-bottom: 15px;
    text-align: center;
    color: #002D62;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 2rem;
    color: #002D62;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-intro {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.benefit-intro p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #FFA500;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #002D62;
}

.benefit-card p {
    line-height: 1.6;
}

.why-us .btn {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-contact {
    margin-bottom: 40px;
    text-align: center;
}

.footer-contact h4 {
    margin-bottom: 15px;
}

.phone-number, .email {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Klasa do blokowania przewijania */
.no-scroll {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: none;
    }
    
    .nav-wrapper.active {
        transform: translateX(0);
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .nav-links li {
        margin-bottom: 20px;
    }
    
    .contact {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .assortment-grid, 
    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us .btn {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links a {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .hero, .strategy, .assortment, .why-us {
        padding: 30px 0;
    }
} 