* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    background: #0e0e0e;
    color: #f2f2f2;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

/* HERO */
.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
        url("img/1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    letter-spacing: 1px;
    max-width: 750px;
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    margin-bottom: 25px;
}

.hero p {
    color: #cfcfcf;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 16px 38px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

/* SECTIONS */
section {
    padding: 80px 10%;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

/* MANIFEST */
.manifest {
    text-align: center;
    padding-bottom: 40p;
}

.manifest-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.manifest-sub {
    font-size: 1.05rem;
    color: #9a9a9a;
}

/* FOR WHO */
.for-who {
    margin-top: -40px;
    text-align: center;
}
.for-who .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* OPINION */
.about-short {
    margin-bottom: 40px;
}

.opinion {
    margin-top: 0;
}
.opinion {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.opinion blockquote {
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* CTA */
.cta {
    text-align: center;
}

.small {
    font-size: 0.85rem;
    margin-top: 20px;
}

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

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 12px 5px;
    color: #fff;
    font-size: 0.9rem;
}

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

.contact-form button {
    margin-top: 30px;
    padding: 16px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #fff;
    color: #000;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: #777;
}

/* HELPERS */
.muted {
    color: #9a9a9a;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 999;
    width: calc(100% - 40px);
    max-width: 900px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.cookie-banner.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: #ddd;
}

.cookie-link {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-actions button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 22px;
    font-size: 0.75rem;
    cursor: pointer;
}

/* COOKIE MODAL */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-box {
    background: radial-gradient(
        circle at top,
        #1a1a1a 0%,
        #0e0e0e 70%
    );
    padding: 60px 55px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.cookie-modal-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.cookie-modal-box label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 0.9rem;
    color: #ddd;
}

.cookie-modal-box button {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
}

.cookie-modal-box input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #777;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.cookie-modal-box input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff;
}

.process {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-top: 60px;
    text-align: left;
}

.process-steps span {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    opacity: 0.15;
    display: block;
    margin-bottom: 25px;
}

.process-steps p {
    font-size: 0.95rem;
    color: #ddd;
}

.about-short {
    text-align: center;
    font-size: 1.1rem;
}

.links-teaser {
    text-align: center;
}

.teaser-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.teaser-links a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #555;
    padding-bottom: 4px;
    transition: 0.3s;
}

.teaser-links a:hover {
    border-color: #fff;
}

footer a {
    color: #777;
    text-decoration: none;
    margin-left: 5px;
}

footer a:hover {
    color: #fff;
}

input[type="date"] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section-divider {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 50px auto;
}

.visual-break {
    padding: 80px 0;
}

.visual-image {
    width: 100%;
    height: 420px;
    margin: 0 auto;
    background-image: url("slub-zdjecia/slubne (105).jpg");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0.9;
}

/* OFFER HERO */
.offer-hero {
    padding: 180px 10% 120px;
    text-align: center;
}

.offer-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.offer-hero p {
    color: #aaa;
    font-size: 1.05rem;
}

/* GRID */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 10% 140px;
}

/* TILE */
.offer-tile {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.75)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: 0.4s;
}

.offer-tile:hover .offer-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.85)
    );
}

.offer-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.offer-overlay a {
    align-self: flex-start;
    padding: 10px 26px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.offer-overlay a:hover {
    background: #fff;
    color: #000;
}

/* ACTIVE NAV */
.nav-links a.active {
    border-bottom: 1px solid #fff;
}

/* MOBILE */
@media (max-width: 900px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-tile {
        height: 360px;
    }
}

/* GALLERY HERO */
.gallery-hero {
    padding: 180px 10% 100px;
    text-align: center;
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.gallery-hero p {
    color: #aaa;
    font-size: 1.05rem;
}

/* GALLERY GRID */
.gallery-page {
    padding: 0 10% 140px;
}

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

.gallery-photo {
    height: 380px;
    background-size: cover;
    background-position: center;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-photo {
        height: 320px;
    }
}

.back-arrow {
    position: fixed;
    top: 120px;
    left: 4%;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    opacity: 0.45;
    z-index: 200;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ABOUT HERO */
.about-hero {
    padding: 180px 10% 120px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    color: #aaa;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ABOUT CONTENT */
.about-content {
    padding: 120px 10%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.photo-placeholder {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center 20%;
}

/* TEXT */
.about-text p {
    margin-bottom: 25px;
    font-size: 1rem;
}

/* OPINIONS */
.about-opinions {
    padding: 120px 10%;
    text-align: center;
}

.about-opinions h2 {
    margin-bottom: 60px;
}

.about-opinions blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about-opinions span {
    display: block;
    margin-bottom: 50px;
    font-size: 0.85rem;
    color: #777;
}

/* MOBILE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .photo-placeholder {
        height: 380px;
    }
}


/* LINKS TEASER */
.links-teaser {
    text-align: center;
    padding: 80px 10% 40px;
}

.links-text {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 30px;
}

.teaser-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.teaser-links a {
    padding: 14px 34px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.teaser-links a:hover {
    background: #fff;
    color: #000;
}

/* LEGAL PAGE */
.legal-hero {
    padding: 180px 10% 120px;
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.legal-hero p {
    color: #aaa;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.legal-content {
    padding: 120px 10%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 60px 0 20px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #ddd;
}

.legal-content ul {
    margin: 20px 0 40px 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #ccc;
}
/* BLOG HERO */
.blog-hero {
    padding: 180px 10% 120px;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-hero p {
    color: #aaa;
}

/* BLOG LIST */
.blog-list {
    padding: 0 10% 140px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blog-image {
    height: 420px;
    background-size: cover;
    background-position: center;
}

.blog-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.blog-content p {
    color: #aaa;
    margin-bottom: 25px;
}

.blog-content a {
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 300px;
    }
}

.blog-post-hero {
    padding: 180px 10% 80px;
    text-align: center;
}

.blog-post-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10% 140px;
}

.blog-post-content h2 {
    font-family: 'Playfair Display', serif;
    margin: 60px 0 20px;
}

.blog-post-content p {
    margin-bottom: 20px;
    color: #ddd;
}

/* EVENT LAYOUT */
.event-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10% 140px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.event-column {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.event-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.event-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.event-block p {
    color: #d0d0d0;
    line-height: 1.8;
}

/* MINI CTA */
.mini-cta {
    text-align: center;
    padding: 120px 10%;
}

.mini-cta p {
    margin-bottom: 30px;
    color: #aaa;
}

.mini-cta a {
    display: inline-block;
    padding: 14px 34px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: 0.3s;
}

.mini-cta a:hover {
    background: #fff;
    color: #000;
}

/* MOBILE */
@media (max-width: 900px) {

    .event-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

}
.media-feature {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 10%;
}

.media-header {
    text-align: center;
    margin-bottom: 50px;
}

.media-label {
    display: block;
    color: #777;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.media-header h2 {
    margin-bottom: 20px;
}

.media-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #aaa;
}

.media-images {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.media-card {
    overflow: hidden;
}

.media-card img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.media-card img:hover {
    transform: scale(1.03);
}

.about-quote {
    text-align: center;
    max-width: 700px;
    margin: 30px auto;
    padding: 0 10%;
}

.about-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #ddd;
}

/* THANK YOU PAGE */

.thank-you-page {
    min-height: 100vh;
    padding: 180px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 3rem;
    margin-bottom: 30px;
    opacity: .8;
}

.thank-you-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
}

.thank-you-page p {
    margin-bottom: 15px;
}

.thank-you-page .btn-primary {
    margin-top: 40px;
}