/* Reset i globalne style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-svg {
    margin-right: 0.75rem;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #666;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #f97316;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Przyciski */
.btn-primary {
    background: #f97316;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #ea580c;
}

.btn-secondary {
    background: #c2410c;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #9a3412;
}

.btn-white {
    background: white;
    color: #f97316;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-text {
    background: none;
    border: none;
    color: #f97316;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-text:hover {
    color: #ea580c;
}

.btn-link {
    background: none;
    border: none;
    color: #f97316;
    font-weight: 600;
    cursor: pointer;
}

.btn-link:hover {
    color: #ea580c;
}

.btn-full {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #4b5563;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: #f97316;
}

/* ========================================
   HERO SLIDER
   ======================================== */

.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporcje 16:9 (1080/1920) */
    max-height: 600px;
}

@media (min-width: 1200px) {
    .slider-container {
        height: 600px;
        padding-bottom: 0;
    }
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Strzałki nawigacji */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 136, 0, 0.9); /* Pomarańczowy hover nawiązujący do kolorystyki */
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Kropki nawigacji */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #ff8800; /* Pomarańczowy - nawiązanie do poprzedniego paska */
    transform: scale(1.2);
}

/* Overlay z tekstem na slajdach */
.slide-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 600px;
}

.slide-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsywność dla tekstu */
@media (max-width: 768px) {
    .slide-overlay {
        bottom: 25px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .slide-overlay h2 {
        font-size: 1.3rem;
        padding: 18px 25px;
    }
}

@media (max-width: 480px) {
    .slide-overlay {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }
    
    .slide-overlay h2 {
        font-size: 1rem;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .slide-overlay {
        padding: 15px;
    }
    
    .slide-overlay h2 {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Sekcje */
.section-light {
    background: #f9fafb;
    padding: 4rem 0;
}

.section-white {
    background: white;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Karty */
.cards-grid {
    display: grid;
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #666;
    margin-bottom: 1rem;
}

.card-details {
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.detail-label {
    color: #9ca3af;
}

.detail-value {
    font-weight: 600;
}

.card-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.card-price {
    font-size: 2rem;
    font-weight: bold;
    color: #f97316;
    margin-bottom: 1rem;
}

.price-period {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Features */
.features-grid {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #fed7aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #666;
}

/* Kontakt */
.contact-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #666;
}

.contact-link {
    color: #f97316;
    text-decoration: none;
}

.contact-link:hover {
    color: #ea580c;
}

/* Formularz */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    margin-bottom: 0.5rem;
}

.footer-subtext {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 0.5rem;
    max-width: 28rem;
    width: 100%;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-large {
    max-width: 42rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
}

.modal-close:hover {
    color: #4b5563;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 1.5rem;
}

.modal-footer-text {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Booking */
.booking-summary {
    background: #fff7ed;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.booking-name {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.booking-desc {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.booking-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.booking-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f97316;
}

.booking-size {
    color: #6b7280;
}

.cost-summary {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cost-total {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
}

.cost-value {
    font-weight: 600;
}

.cost-value-total {
    color: #f97316;
    font-weight: bold;
}

.booking-section-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.summary-box {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-label {
    color: #6b7280;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
}

.summary-value-total {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f97316;
}

.info-box {
    background: #dbeafe;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.info-box p {
    font-size: 0.875rem;
    color: #1e40af;
}

.button-group {
    display: flex;
    gap: 0.75rem;
}

.button-group button {
    flex: 1;
}

/* Responsive */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn,
    .mobile-nav {
        display: none !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Overlay z tekstem na slajdach */
.slide-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.slide-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    max-width: 900px;
    line-height: 1.3;
}

/* Responsywność dla tekstu */
@media (max-width: 768px) {
    .slide-overlay {
        padding: 20px;
    }
    
    .slide-overlay h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-overlay {
        padding: 15px;
    }
    
    .slide-overlay h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slide-overlay {
        padding: 30px 15px;
    }
    
    .slide-overlay h2 {
        font-size: 1.2rem;
    }
}