:root {
    --gradient-primary: linear-gradient(135deg, #e24f28 0%, #c2654c 100%);
    --cinnabar: #e24f28;
    --mandys-pink: #c2654c;
    --fuzzy-wuzzy-brown: #db9676;
    --flame-pea: #d65b39;
    --hit-gray: #a2a9b0;
    --porcelain: #f7fafc;
}

body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h2 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--cinnabar);
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 100px;
}

section {
    padding: 0.5rem;
    max-width: 1800px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.hero {
    text-align: center;
    color: white;
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    background: none;
    min-height: 400px;
    margin-top: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4500;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    min-height: 100%;
}

.agga-text {
    font-family: 'Great Vibes', cursive;
    color: #ff4500;
    font-size: 120px;
    font-weight: bold;
    letter-spacing: 1px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-button button {
    margin: 0;
    padding: 1rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #e24f28;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
}

.whatsapp-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    display: inline-block;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
}

button {
    background: var(--cinnabar);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover {
    background: #d65b39;
}

#about {
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath d="M 10 50 L 90 50" stroke="%23e2e8f0" stroke-width="2" stroke-dasharray="5 5" /%3E%3C/svg%3E') repeat;
    opacity: 0.15;
    z-index: 0;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.25; }
    100% { opacity: 0.15; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseWidget {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

.about-team {
    flex: 1;
    display: flex;
    justify-content: center;
}

.team-member {
    text-align: center;
    max-width: 600px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.team-text {
    font-size: 0.8rem;
    color: #4a5568;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lora', serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info div {
    flex: 1;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

#reviews .review {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#reviews .stars {
    color: #f6c844;
    margin-bottom: 1rem;
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulseWidget 2s infinite;
}

.address-below-map {
    text-align: center;
    margin-top: 0.5rem;
}

.address-below-map h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.address-below-map p {
    margin: 0.5rem 0;
    font-size: 1rem;
   
    font-family: 'Lora', serif;
    line-height: 1.6;
}

.button-container {
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
    }

    .hero::after {
        height: 2px;
        background: #ff4500;
    }

    .agga-text {
        font-size: 60px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
    }

    .hero-button {
        bottom: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .social-buttons a {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-description {
        font-size: 0.9rem;
    }

    .team-text {
        font-size: 0.8rem;
    }

    .team-image {
        width: 200px;
        height: 200px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 200px;
        aspect-ratio: 4/3;
      
    }

    .contact-form input, .contact-form textarea {
        font-size: 0.9rem;
    }

    #reviews h2 {
        font-size: 1.5rem;
    }

    #reviews .review {
        font-size: 0.9rem;
    }

    .address-below-map p {
        font-size: 0.9rem;
    }

    .price-categories {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .team-image {
        width: 150px;
        height: 150px;
    }

    .address-below-map p {
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero::after {
        height: 2px;
        background: #ff4500;
    }

    .agga-text {
        font-size: 100px;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .social-buttons a {
        font-size: 1rem;
    }

    .whatsapp-btn {
        font-size: 1.1rem;
    }

    button {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .team-description {
        font-size: 0.95rem;
    }

    .team-text {
        font-size: 0.8rem;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery img {
        height: 200px;
        aspect-ratio: 4/3;
        
    }

    .contact-form input, .contact-form textarea {
        font-size: 0.95rem;
    }

    #reviews h2 {
        font-size: 1.8rem;
    }

    #reviews .review {
        font-size: 0.95rem;
    }

    .address-below-map p {
        font-size: 0.95rem;
    }
}

.bold-link {
    font-weight: bold;
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bold-link:hover {
    color: var(--cinnabar);
}

/* Style dla modala (lightbox) */
.modal {
    display: none; /* Ukryty domyślnie */
    position: fixed; /* Na pełnym ekranie */
    z-index: 1000; /* Na wierzchu wszystkiego */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Scroll, jeśli potrzeba */
    background-color: rgba(0, 0, 0, 0.9); /* Czarne tło z przezroczystością */
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px; /* Maksymalna szerokość dla dużych ekranów */
    max-height: 80vh; /* Maksymalna wysokość, aby zmieścić się na ekranie */
    object-fit: contain; /* Zachowuje proporcje zdjęcia */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--cinnabar); /* Kolor hover pasujący do motywu */
    text-decoration: none;
}

/* Dodaj kursor wskazujący na zdjęcia w galerii */
.gallery img {
    cursor: pointer; /* Pokazuje, że można kliknąć */
    transition: transform 0.3s ease; /* Lekka animacja */
}

.gallery img:hover {
    transform: scale(1.05); /* Lekkie powiększenie na hover */
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Większe na mobilkach */
    }
    .close {
        font-size: 30px;
        top: 10px;
        right: 25px;
    }
}