/* Reset i podstawowe style */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #dc143c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a60e2d;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: #dc143c;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: 2px solid #dc143c;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #a60e2d;
    border-color: #a60e2d;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #dc143c;
}

.btn-outline:hover {
    background-color: #dc143c;
    color: #fff;
}

/* Header i Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #dc143c;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

nav ul li a:hover {
    color: #dc143c;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%23f5f5f5"/><path d="M0,400 L1200,400" stroke="%23dc143c" stroke-width="400"/><path d="M0,400 L1200,400" stroke="white" stroke-width="200"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about h2, .attractions h2, .regions h2, .blog-preview h2, .newsletter h2, .contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.about h2::after, .attractions h2::after, .regions h2::after, .blog-preview h2::after, .newsletter h2::after, .contact h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #dc143c;
    margin: 1rem auto 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text, .about-image {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Attractions Section */
.attractions {
    padding: 5rem 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.attraction-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Regions Section */
.regions {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.regions-content {
    display: flex;
    gap: 2rem;
}

.region-map, .region-info {
    flex: 1;
}

.region-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.7rem 1.2rem;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

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

.region-description {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.region-description h3 {
    margin-bottom: 1rem;
    color: #dc143c;
}

.region-description p {
    margin-bottom: 1rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0.7rem;
    font-size: 1.3rem;
}

.blog-card p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    font-weight: bold;
    color: #dc143c;
}

.cta-button {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.newsletter p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

#newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-check input {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: flex;
    gap: 2rem;
}

.contact-info, .contact-map {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #dc143c;
}

.contact-info p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #dc143c;
    color: #fff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.3rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #dc143c;
    margin-top: 0.5rem;
}

.footer-column p {
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #dc143c;
}

.footer-column .social-links a {
    background-color: #444;
    color: #fff;
}

.footer-column .social-links a:hover {
    background-color: #dc143c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Blog Page Styles */
.blog-list {
    padding: 5rem 0;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-header {
    background-color: #f9f9f9;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Blog Article Page */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-header .meta {
    color: #666;
    margin-bottom: 2rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.related-posts {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.button-group {
    margin-top: 2rem;
}

.button-group .btn {
    margin: 0 0.5rem 1rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.legal-page h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-page p, .legal-page ul, .legal-page ol {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-page ul, .legal-page ol {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .regions-content, .contact-content {
        flex-direction: column;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 70vh;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .attractions-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
