:root {
    --primary: #D8003D;
    --primary-light: #ff4f81;
    --accent: #FFF600;
    --dark: #191818;
    --light: #ffffff;
    --gray: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(216, 0, 61, 0.3);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #ffe100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 246, 0, 0.3);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.navbar {
    background-color: var(--light);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
}

.logo-text .fun {
    color: #00FF44;
}

.logo-text .four {
    color: #02D7EF;
}

.logo-text .u {
    color: #CC00FF;
}

.logo-text .dot {
    color: var(--dark);
}

.logo-text .pl {
    color: #1EFF00;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary);
    margin-left: 5px;
    margin-top: 25px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li.active a {
    color: var(--primary);
}

.nav-links li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.contact-btn {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(216, 0, 61, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}


.hero {
    margin-top: 80px;
    min-height: 600px;
    display: flex;
    overflow: hidden;
}

.hero-left {
    width: 50%;
    background-color: #418dff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-right {
    width: 50%;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF600;
    text-align: center;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #FFF600;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background-color: #FFF600;
    color: #00056D;
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
    display: inline-block;
    margin-right: -200px;
    transition: all 0.3s;
    position: relative;
    border: 1px solid #4D4D4D;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: #fff;
}

.hero-content a {
    text-decoration: none;
}

.arrow-pointer {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 80px;
    height: 80px;
}

.arrow-pointer::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #FFF600;
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}

.arrow-pointer::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-right: 2px solid #FFF600;
    border-bottom: 2px solid #FFF600;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.star {
    position: absolute;
    color: #FFF600;
    font-size: 1.5rem;
}

.star:nth-child(1) {
    top: 15%;
    left: 15%;
}

.star:nth-child(2) {
    top: 15%;
    left: 40%;
}

.star:nth-child(3) {
    top: 15%;
    left: 65%;
}

.star:nth-child(4) {
    top: 15%;
    right: 15%;
}

.star:nth-child(5) {
    top: 50%;
    left: 15%;
}

.star:nth-child(6) {
    top: 50%;
    right: 15%;
}

.star:nth-child(7) {
    bottom: 15%;
    left: 30%;
}

.star:nth-child(8) {
    bottom: 15%;
    right: 30%;
}


.features {
    background-color: rgb(255, 255, 255);
}

.features-title {
    text-align: center;
    margin-bottom: 60px;
}

.features-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
}

.features-title h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 10px;
}

.features-content {
    background: rgba(189, 0, 79, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-text {
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

.features-text p {
    margin-bottom: 20px;
}


.attractions {
    background-color: rgb(255, 244, 244);
}

.attractions-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
}

.attractions-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.attractions-image {
    flex: 1;
}

.attractions-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.attractions-text {
    flex: 1;
    color: #555;
    font-size: 1.1rem;
    font-weight: 400;
}

.attractions-text p {
    margin-bottom: 20px;
}

.reserve-btn {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 12px 30px;
}

/* Styl dla nagłówka sekcji */
.section-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Specjalny styl dla sekcji "Gdzie dojeżdżamy?" */
#service-area .section-header {
    text-align: center;
}

/* Styling for the "Gdzie dojeżdżamy?" section */
.service-area {
    background-color: #f9f9f9;
    padding: 60px 0;
    border: none !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.service-area::after,
.service-area::before {
    display: none !important;
    content: none !important;
}

/* Usunięcie czarnego paska między sekcjami */
.section + .section {
    border-top: none !important;
    margin-top: 0 !important;
}

.section + .footer {
    border-top: none !important;
    margin-top: 0 !important;
}

.cities-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.city-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.city-icon {
    width: 60px;
    height: 60px;
    background-color: #ffd000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.city-icon i {
    font-size: 24px;
    color: white;
}

.city-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.city-card p {
    color: #777;
    font-size: 0.95rem;
}

.service-info {
    text-align: center;
    max-width: 600px;
    margin: 30px auto 0;
}

.service-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.service-info .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    background-color: #D8003D;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.service-info .btn:hover {
    background-color: #b5003a;
    transform: translateY(-2px);
}

.seo-content {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.seo-content p {
    margin-bottom: 15px;
}

/* Media queries dla responsywności */
@media (max-width: 768px) {
    .cities-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .city-icon {
        width: 50px;
        height: 50px;
    }
    
    .city-icon i {
        font-size: 20px;
    }
    
    .city-card h3 {
        font-size: 1.2rem;
    }
    
    .service-info p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cities-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer {
    background-color: var(--dark);
    padding: 60px 0 20px;
    color: var(--light);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
}

.footer-logo-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #ccc;
    margin-top: 5px;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-nav h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav ul li a {
    color: #ccc;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-nav ul li a:hover,
.footer-nav ul li.active a {
    color: var(--accent);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
    font-weight: 400;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: var(--accent);
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100%;
        height: 500px;
    }
    
    .hero-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title,
    .features-title h2,
    .attractions-title {
        font-size: 2rem;
    }

    .features-title h3 {
        font-size: 1.8rem;
    }

    .features-content,
    .attractions-text {
        padding: 30px;
    }

    .attractions-content {
        flex-direction: column;
        gap: 30px;
    }

    .attractions-image {
        width: 100%;
    }

    .attractions-image img {
        max-width: 100%;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-left, .hero-right {
        height: 400px;
    }

    .btn {
        padding: 10px 20px;
    }
}