* {
    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: #f8f9fa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

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

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Info Section */
.info-section {
    background: white;
}

.info-box {
    background: #f1f8f9;
    border-left: 4px solid #159895;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}

.info-box p {
    font-size: 1.1rem;
    color: #555;
}

/* Icon styles */
.icon-accent {
    color: #159895;
    margin-right: 10px;
}

/* Pricing */
.pricing-section {
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.price-card.featured {
    border: 2px solid #159895;
    position: relative;
}

.price-card.featured::before {
    content: 'Popularne';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #159895;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.price-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.price-card h3 {
    color: #1a5f7a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #159895;
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 1rem;
    color: #888;
    font-weight: normal;
}

.price-per-person {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price-desc {
    color: #777;
    font-size: 0.95rem;
}

/* Instructions */
.instructions-section {
    background: white;
}

.instructions-list {
    max-width: 800px;
    margin: 0 auto;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s;
}

.instruction-item:hover {
    background: #e8f4f5;
}

.instruction-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.instruction-text {
    flex: 1;
    padding-top: 5px;
}

.instruction-sublist {
    margin-top: 10px;
    list-style: none;
    padding-left: 20px;
}

.instruction-sublist li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.instruction-sublist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #159895;
    font-size: 0.8rem;
}

/* Gallery */
.gallery-section {
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h4 {
    color: #1a5f7a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.gallery-caption p {
    color: #666;
    font-size: 0.9rem;
}

.gallery-caption .setting-badge {
    display: inline-block;
    background: #e8f4f5;
    color: #1a5f7a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #159895;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
}

.lightbox-nav:hover {
    color: #159895;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Video Section */
.video-section {
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    color: white;
    text-align: center;
}

.contact-section h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-subtitle {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: #1a5f7a;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

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

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

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 10px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}
