/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background: #f8f9fa;
}

.accent { color: #E83A5F; }

/* === NAGŁÓWEK === */
#header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1a1a2e;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo-sub {
    font-weight: 300;
    color: #ffffff99;
    font-size: 18px;
}

.clock {
    text-align: right;
    font-family: 'Consolas', monospace;
}

#timer {
    font-size: 22px;
    color: #E83A5F;
    font-weight: 600;
}

#date {
    font-size: 13px;
    color: #ffffff88;
}

nav {
    display: flex;
    justify-content: center;
    background: #16213e;
}

nav a {
    color: #ffffffcc;
    text-decoration: none;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    background: #E83A5F;
    color: #fff;
}

/* === HERO === */
#hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    padding: 60px 20px;
}

#hero h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

#hero p {
    color: #ffffffbb;
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 15px !important;
    color: #E83A5F !important;
    font-weight: 600;
    margin-bottom: 25px !important;
}

.hero-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #E83A5F;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    margin-top: 10px;
}

.hero-btn:hover {
    background: #c0314f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,58,95,0.4);
}

/* === SEKCJE === */
.section {
    padding: 70px 20px;
}

.section-alt {
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-size: 30px;
    color: #1a1a2e;
    margin-bottom: 28px;
    padding-bottom: 12px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #E83A5F;
    border-radius: 2px;
}

.section-desc {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

/* === 2 KOLUMNY === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.col-text p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
}

.col-side img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.col-side iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* === HANDEL (OFERTA) === */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
}

.offer-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.offer-icon { font-size: 38px; margin-bottom: 12px; }
.offer-card h3 { font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.offer-card p { font-size: 14px; color: #666; }

/* === WYNAJEM — TABY === */
.rental-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    border: 2px solid #E83A5F;
    background: transparent;
    color: #E83A5F;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover, .tab-btn.active {
    background: #E83A5F;
    color: #fff;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

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

.rental-info h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.rental-info p {
    color: #555;
    margin-bottom: 12px;
}

.rental-info ul {
    list-style: none;
    padding: 0;
}

.rental-info ul li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    color: #444;
}

.rental-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E83A5F;
    font-weight: 700;
}

.rental-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* === ODBIORCY === */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.partner-card {
    background: #f8f9fa;
    border-left: 4px solid #E83A5F;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
}

.partner-card h3 { font-size: 15px; color: #1a1a2e; margin-bottom: 5px; }
.partner-card p { font-size: 13px; color: #666; }

.partner-logos {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-logos img {
    max-height: 55px;
    opacity: 0.7;
    transition: opacity 0.3s;
    border-radius: 6px;
}

.partner-logos img:hover { opacity: 1; }

/* === KONTAKT === */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 8px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon { font-size: 26px; min-width: 38px; text-align: center; }

.contact-item a {
    color: #E83A5F;
    text-decoration: none;
}

.contact-item a:hover { text-decoration: underline; }

/* === STOPKA === */
footer {
    background: #1a1a2e;
    color: #ffffff99;
    text-align: center;
    padding: 22px;
    font-size: 14px;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
    }

    .clock { text-align: center; }

    nav { flex-wrap: wrap; }
    nav a { padding: 10px 14px; font-size: 13px; }

    #hero h1 { font-size: 30px; }
    #hero p { font-size: 15px; }

    .two-col { grid-template-columns: 1fr; gap: 25px; }
    .tab-panel.active { grid-template-columns: 1fr; }

    .section { padding: 40px 15px; }
    h2 { font-size: 24px; }

    html { scroll-padding-top: 150px; }
}
