* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nawigacja */
.navbar {
    background-color: #ffa366;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 78px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.fb-link {
    color: #fff;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.fb-link:hover {
    transform: scale(1.1);
}

/* Sekcje */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 30px;
    text-align: center;
}

/* O Firmie */
.about-section {
    background-color: #fff8f0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* Galeria */
.gallery-section {
    background-color: #fff;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-carousel {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.gallery-item {
    min-width: calc(33.333% - 14px);
    aspect-ratio: 4/3;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6600;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #e55a00;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Cennik */
.pricing-section {
    background-color: #fff8f0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.pricing-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pricing-item:hover .pricing-img {
    transform: scale(1.1);
}

.pricing-content {
    padding: 20px;
}

.pricing-content h3 {
    color: #ff6600;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.pricing-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600;
}

/* Lokalizacja */
.location-section {
    background-color: #fff;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.google-map {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #ff6600;
}

/* Formularz kontaktowy */
.contact-section {
    background-color: #fff8f0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6600;
}

.submit-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background-color: #e55a00;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Informacje kontaktowe */
.contact-info-section {
    background-color: #fff;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff8f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.contact-item strong {
    color: #ff6600;
    margin-right: 10px;
}

.contact-item a {
    color: #ff6600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Stopka */
.footer {
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsywność */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .gallery-item {
        min-width: calc(50% - 10px);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffa366;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .fb-link {
        margin-top: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .gallery-container {
        padding: 0 40px;
    }

    .gallery-item {
        min-width: calc(50% - 10px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .google-map {
        width: 100%;
        height: 350px;
    }

    .contact-form {
        padding: 0 10px;
    }

    .contact-info {
        padding: 20px;
        margin: 0 10px;
    }

    .contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.2rem;
    }

    .logo {
        height: 63px;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 30px 0;
    }

    .gallery-container {
        padding: 0 30px;
    }

    .gallery-item {
        min-width: 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }

    .google-map {
        height: 300px;
    }

    .pricing-content {
        padding: 15px;
    }

    .pricing-content h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-item {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .nav-right {
        width: 100%;
    }

    .company-name {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
    }
}

