/* ===================================
   FONTY
=================================== */

@font-face {
    font-family: 'Brasika';
    src: url('../fonts/Brasika Display Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   BAZA
=================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7;
    -webkit-font-smoothing: auto;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* ===================================
   TYPOGRAFIA
=================================== */

.font-brasika {
    font-family: 'Brasika', serif;
    font-weight: normal;
}

h1, h2, h3, .heading {
    font-family: 'Brasika', serif;
    font-weight: normal;
    line-height: 1.2;
}

/* ===================================
   KOLORY AKCENTÓW
=================================== */

:root {
    /* Kolory główne */
    --pink: #ff00aa;
    --blue: #00e5ff;

    /* Odcienie różowego */
    --pink-dark: #cc0088;
    --pink-mid: #ff44c2;
    --pink-light: #ffb3e6;
    --pink-pale: #fff0fa;

    /* Odcienie niebieskiego */
    --blue-dark: #00aabf;
    --blue-mid: #33eeff;
    --blue-light: #99f5ff;
    --blue-pale: #f0feff;

    /* Neutralne */
    --black: #0a0a0a;
    --grey-dark: #1a1a1a;
    --grey-mid: #444444;
    --grey-soft: #888888;
    --grey-light: #cccccc;
    --grey-pale: #f5f5f5;
    --white: #ffffff;
}

.text-pink   { color: var(--pink); }
.text-blue   { color: var(--blue); }

.heading-pink {
    font-family: 'Brasika', serif;
    font-weight: normal;
    color: var(--pink);
}

.heading-blue {
    font-family: 'Brasika', serif;
    font-weight: normal;
    color: var(--blue);
}


/* ===================================
   PRZYCISKI — jedyne animacje na stronie
=================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
}

.btn-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: center;
    }
    .btn-group .btn {
        width: 100%;
        max-width: 320px;
        min-width: unset;
        margin-bottom: 1.2rem;
    }
    .btn-group .btn:last-child {
        margin-bottom: 0;
    }
}

.btn-pink {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}
.btn-pink:hover {
    background-color: var(--pink-dark);
    border-color: var(--pink-dark);
    color: var(--white);
    box-shadow: 0 0 18px rgba(255, 0, 170, 0.35);
}

.btn-blue {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--black);
}
.btn-blue:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
}


.btn-outline-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}
.btn-outline-white:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-dark {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.btn-dark:hover {
    background-color: transparent;
    color: var(--black);
}

/* ===================================
   NAWIGACJA
=================================== */

.nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}

.nav-link-reserve {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1.5px solid var(--pink);
    color: var(--pink);
    padding: 0.4rem 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.nav-link-reserve:hover {
    background-color: var(--pink);
    color: var(--white);
    box-shadow: 0 0 14px rgba(255, 0, 170, 0.3);
}

/* ===================================
   SEKCJE
=================================== */

.section {
    padding: 5rem 1.5rem;
}

.section-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.section-wide {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   DIVIDER
=================================== */

.divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    margin: 1.5rem 0;
    border: none;
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    padding: 1.5rem;
}

.hero-title {
    font-family: 'Brasika', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-sub {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   CENNIK
=================================== */

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.pricing-row:first-child {
    border-top: 1px solid #f0f0f0;
}

.pricing-row:hover {
    background: #fafafa;
}

.pricing-row--highlight {
    background: #fff5fb;
}

.pricing-row--highlight:hover {
    background: #fff0f8;
}

.pricing-row__label {
    font-size: 0.875rem;
    color: #333;
}

.pricing-row--highlight .pricing-row__label {
    color: var(--pink);
}

.pricing-row__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-row__price {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    min-width: 5rem;
    text-align: right;
}

.pricing-row--highlight .pricing-row__price {
    color: var(--pink);
}

.pricing-row__rate {
    font-size: 0.72rem;
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
    min-width: 4.5rem;
    text-align: right;
}

.pricing-row--highlight .pricing-row__rate {
    color: #e88ccc;
}

/* ===================================
   FAQ
=================================== */

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-answer {
    font-size: 0.875rem;
    color: var(--grey-mid);
    margin-top: 0.75rem;
    display: none;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    position: relative;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ===================================
   GALERIA
=================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background-color: #f0f0f0;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #f5f5f5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ===================================
   FORMULARZ KONTAKTOWY
=================================== */

.form-field {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--grey-mid);
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--pink);
    box-shadow: 0 2px 0 0 rgba(255, 0, 170, 0.15);
}

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

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--grey-mid);
    cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--pink);
}

.form-error {
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 0.25rem;
}

/* ===================================
   WIADOMOŚCI (messages framework)
=================================== */

.message-success {
    background-color: #f0faf0;
    border-left: 3px solid #5a9e6f;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.message-error {
    background-color: #fdf0f0;
    border-left: 3px solid #c0392b;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   STOPKA
=================================== */

.footer {
    background-color: #111111;
    color: #aaaaaa;
    padding: 3.5rem 1.5rem 2rem;
}

.footer a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #ffffff;
}

.footer-title {
    font-family: 'Brasika', serif;
    font-weight: normal;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.footer-heading {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--pink);
    color: var(--pink) !important;
    box-shadow: 0 0 10px rgba(255, 0, 170, 0.3);
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;

    transform: translateZ(0);
    line-height: 0;
    vertical-align: middle;
    box-sizing: border-box;
}
.social-link:hover {
    border-color: var(--pink) !important;
    color: var(--pink) !important;
    box-shadow: 0 0 10px rgba(255, 0, 170, 0.3);
}

/* ===================================
   KONTAKT — strona
=================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-soft);
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 0.95rem;
}

.contact-value a:not(.social-link) {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-value a:not(.social-link):hover {
    color: var(--pink);
    border-bottom-color: var(--pink);
}

/* ===================================
   RESPONSYWNOŚĆ
=================================== */

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem 1rem;
    }
}
