/* Reset i ustawienia podstawowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kolory inspirowane hdkania.pl */
    --primary-dark: #1a1a1a;
    --primary-light: #ffffff;
    --accent-gold: #c9a961;
    --text-gray: #666666;
    --bg-alt: #f8f8f8;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    line-height: 1.6;
    font-weight: 300;
}

/* Header i Nawigacja */
header {
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: block;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.btn-reservation {
    background-color: var(--accent-gold) !important;
    color: var(--primary-light) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 3px;
    font-weight: 600 !important;
}

.btn-reservation:hover {
    background-color: #b89651 !important;
    color: var(--primary-light) !important;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(201, 169, 97, 0.8);
}

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

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--accent-gold);
}

/* Motto Section */
.motto {
    background-color: var(--accent-gold);
    padding: 3rem 5%;
    text-align: center;
}

.motto-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8;
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    text-align: center;
    padding: 6rem 5%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Sections */
.section {
    padding: 5rem 5%;
    background-color: var(--primary-light);
}

.section-alt {
    background-color: var(--bg-alt);
}

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

.section-card {
    text-align: center;
}

.section-card h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.section-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Section with Image */
.section-content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
    margin-top: 2rem;
}

.section-image {
    flex-shrink: 0;
    width: 250px;
    height: auto;
    border-radius: 3px;
}

.section-text {
    flex: 1;
}

.section-text p {
    margin-bottom: 1.5rem;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: transparent;
    color: var(--primary-dark);
    text-decoration: none;
    border: 1px solid var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-light);
    border-color: var(--accent-gold);
}

/* Contact Section */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* Events Section */
.events-section {
    background-color: var(--bg-alt);
}

.events-section .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: var(--primary-dark);
    text-align: center;
}

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

.event-card {
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.event-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
    text-align: center;
}

.event-date {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.event-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.event-content .btn {
    font-size: 0.75rem;
    padding: 0.7rem 2rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 3rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.social-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.footer-contact {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.footer-contact h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.footer-contact .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.footer-contact .contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: var(--primary-light);
}

.footer-contact .contact-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.footer-contact .contact-item a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact .contact-item a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .slider {
        height: 400px;
    }

    .slider-btn {
        padding: 0.7rem 0.9rem;
        font-size: 1.2rem;
    }

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

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

    .motto {
        padding: 2rem 5%;
    }

    .motto-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero {
        padding: 4rem 5%;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 5%;
    }

    .section-card h2 {
        font-size: 2rem;
    }

    .section-content-with-image {
        flex-direction: column;
        gap: 2rem;
    }

    .section-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .section-text {
        text-align: center;
    }

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

    .footer-contact .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-section .section-title {
        font-size: 2rem;
    }

    .event-image {
        height: 200px;
    }
}

/* Article Pages */
.article-page {
    min-height: 100vh;
}

.article-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: var(--bg-alt);
}

.article-content {
    padding: 4rem 5%;
    background-color: var(--primary-light);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: justify;
}

.article-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* Video Container */
.video-container {
    margin: 3rem 0;
    text-align: center;
}

.video-container h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.video-link {
    position: relative;
    display: block;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Gallery */
.gallery {
    margin: 3rem 0;
}

.gallery h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    background-color: var(--bg-alt);
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .article-hero {
        height: 400px;
    }

    .article-content {
        padding: 3rem 5%;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-body h2 {
        font-size: 1.4rem;
    }

    .article-body p {
        font-size: 1rem;
        text-align: left;
    }

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

    .gallery-grid img {
        height: 450px;
    }

    .video-container h2,
    .gallery h2 {
        font-size: 1.4rem;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }
}
