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

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

#calendar {
    scroll-margin-top: 120px; /* wysokość headera + trochę marginesu */
}

/*    */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

.reserve-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.reserve-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: #2c2c2c;
    cursor: pointer;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.2) translate(-5%, -5%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.slide:nth-child(2) img {
    animation: kenBurns2 20s ease-in-out infinite;
}

@keyframes kenBurns2 {
    0% {
        transform: scale(1.1) translate(-3%, 0);
    }
    50% {
        transform: scale(1.3) translate(3%, -3%);
    }
    100% {
        transform: scale(1.1) translate(-3%, 0);
    }
}

.slide:nth-child(3) img {
    animation: kenBurns3 20s ease-in-out infinite;
}

@keyframes kenBurns3 {
    0% {
        transform: scale(1.15) translate(2%, -2%);
    }
    50% {
        transform: scale(1.25) translate(-4%, 4%);
    }
    100% {
        transform: scale(1.15) translate(2%, -2%);
    }
}

.slide:nth-child(4) img {
    animation: kenBurns4 20s ease-in-out infinite;
}

@keyframes kenBurns4 {
    0% {
        transform: scale(1.2) translate(-2%, 3%);
    }
    50% {
        transform: scale(1) translate(2%, -3%);
    }
    100% {
        transform: scale(1.2) translate(-2%, 3%);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding: 40px 60px;
    border-radius: 10px;
    
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

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

.slider-dot.active {
    background: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* About Section */
.about {
    padding: 5% 3%;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c5530;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Amenities Section */
.amenities {
    background: #f5f5f0;
    color: #2c2c2c;
    padding: 100px 20px;
}

.amenities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.amenities-subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 60px;
    color: #666;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(60px);
    text-align: center;
    visibility: hidden;
}

.amenity-card.animate {
    visibility: visible;
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #f5f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    transition: transform 0.4s ease, background 0.4s ease;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.2) rotate(5deg);
    background: #e8e8dc;
}

.amenity-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: default;
}

.amenity-card:hover h3 {
    transform: scale(1.08);
    color: #b8926a;
}

.amenity-card p {
    color: #666;
    line-height: 1.7;
}

/* Rooms Section */
.rooms {
    padding: 100px 20px;
    background: #f9f9f9;
}

.rooms h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #2c5530;
}

.rooms-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 60px;
    color: #666;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CTA Section - Gotowi na górski wypoczynek */
.cta-section {
    background: #2c2c2c;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-btn-primary {
    background: white;
    color: #2c2c2c;
}

.cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.cta-border{
    border: 3px #007BBF solid;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.add-padding{
    padding: 3%;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    width: 100%;
    height: 250px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #666;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c5530;
}

.room-content p {
    margin-bottom: 20px;
    color: #666;
}

.room-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c5530;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 80px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 400;
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95em;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 0.95em;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95em;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85em;
}

.footer-links a:hover {
    color: white;
}

.footer-social h3 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-divider {
    max-width: 1400px;
    margin: 0 auto 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    line-height: 1.8;
    margin: 8px 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header-content {
        padding: 10px 20px;
    }

    .logo-text {
        font-size: 0.9em;
    }

    .nav-wrapper {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #f5f5f5;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-wrapper.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: block;
    }
    .date-picker-container {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .date-display {
        gap: 15px;
    }
    
    .date-item {
        min-width: 80px;
    }
    
    .date-number {
        font-size: 2.2em;
    }
    
    .date-label {
        font-size: 1em;
    }
    
    .check-availability-btn {
        width: 100%;
    }
    .cta-content h2 {
        font-size: 2em;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about h2 {
        font-size: 1.5em;
    }

    .hero-content h1 {
        font-size: 1.4em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text p {
        font-size: 1em;
    }
    .amenities h2 {
        font-size: 1.5em;
    }

    .amenities-subtitle {
        font-size: 1.2em;
    }
    .amenities-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-price {
        font-size: 1.1em;
    }

    .hero-content {
        padding: 20px 30px;
    }

    .rooms h2 {
        font-size: 1.3em;
    }

    .room-content h3 {
        font-size: 1.3em;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hotresSearchBar {
        flex-direction: column !important;
        min-width: 300px !important;
        padding: 25px 20px !important;
        gap: 20px !important;
    }
    
    .hotresSearchBar .arrival::after,
    .hotresSearchBar .arrival::before {
        display: none !important;
    }
    
    
    .hotresSearchBar .month b {
        font-size: 18px !important;
    }
    
    .hotresSearchBar button {
        border-radius: 30px !important;
        width: 100% !important;
    }


}
