html {
    scroll-behavior: smooth;
}  

body {
    background-color: #1c1c1c;
    color: #a8a8a8;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
}

button {
    background-color: #000000;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px 20px;
    transition: 0.3s;
}

button:hover {
    background-color: #d4af37;
    color: #000000;
}

.section-light {
    background-color: #f5f5f5;
    color: #1c1c1c;
    padding: 50px 0;
}

.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* MAIN SEKCJA */

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 10px 20px;
}

.nav-links i {
    padding: 15px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

/* BURGER MENU */

.burger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin: 3%;
}

/* RESPONSYWKA */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
    }
}

/* HERO */

#hero {
    display: flex;
    background: url(images/hero.jpg) no-repeat center center / cover;
    height: 90vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.btn {
    background-color: #d4af37;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    margin: 1px;
}

.btn:hover {
    background-color: #000;
    color: #d4af37;
}

/* ABOUT */

#about {
    display: flex;
    align-items: center;
    padding: 80px 10%;
    background-color: #1c1c1c;
    border-top: 1px solid #a8a8a8;
    border-bottom: 1px solid #a8a8a8;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-content img {
    width: 50%;
    border-radius: 10px;
    -webkit-box-shadow: -1px 0px 30px -8px rgba(0, 0, 0, 1);
    -moz-box-shadow: -1px 0px 30px -8px rgba(0, 0, 0, 1);
    box-shadow: -1px 0px 30px -8px rgba(0, 0, 0, 1);

}

.about-content .text {
    color: #a8a8a8;
}

.text h2 {
    color: #d4af37;
    font-size: 32px;
}

/* GALERIA */

#gallery {
    padding: 80px 10%;
    text-align: center;
    background-color: #2a2a2a;
}

#gallery h2 {
    font-size: 32px;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-content img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-content img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.3);
}

/* PRICING */

#pricing {
    padding: 80px 10%;
    text-align: center;
    background-color: #1c1c1c;
    color: white;
    border-top: 1px solid #a8a8a8;
}

#pricing h2 {
    font-size: 32px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    border: 2px solid #d4af37;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 250px;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.price {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    color: #ffd700;
    font-weight: bold;
}

.pricing-card i {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 10px;
}

.pricing-card p {
    flex: 1; 
}

/* Reviews */

#reviews {
    padding: 80px 10%;
    text-align: center;
    background-color: #2c2c2c;
    color: white;
    position: relative;
    border-top: 1px solid #a8a8a8;
    border-bottom: 1px solid #a8a8a8;
}

#reviews h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.review {
    position: absolute;
    width: 100%;
    max-width: 600px;
    font-size: 20px;
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.review.active {
    opacity: 1;
    transform: translateX(0);
}


#reviews button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffd700;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 90%;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
}

.slider-controls button {
    background-color: rgba(255, 215, 0, 0.8);
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
    color: white;
}

.slider-controls button:hover {
    background-color: rgba(255, 215, 0, 1);
}

/* SOCIALS */

#socials {
    padding: 80px 10%;
    text-align: center;
    background-color: #1c1c1c;
    color: white;
    border-bottom: 1px solid #a8a8a8;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#socials h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 20px;
    width: 100%;
}

#socials-1, #socials-2 {
    width: 50%;
    flex-wrap: wrap;
    display: flex;
}

#map {
    width: 100%;
}

#map iframe {
    border-radius: 25px;
    -webkit-box-shadow: -1px 0px 30px -8px rgba(0, 0, 0, 1);
    -moz-box-shadow: -1px 0px 30px -8px rgba(0, 0, 0, 1);
    box-shadow: -1px 0px 30px -8px rgba(0, 0, 0, 1);
}

/* Zaktualizowane style dla ikon */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    transition: transform 0.3s, background 0.3s;
}

.facebook {
    background: #1877f2;
    text-decoration: none;
}

.instagram {
    background: linear-gradient(45deg, #fccc63, #bc1888, #451a92);
    text-decoration: none;
}

.tiktok {
    background: black;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Media query dla mniejszych ekranów */
@media screen and (max-width: 1366px) {
    #socials {
        flex-direction: column;
        padding: 40px 10%; /* Zmniejsz padding na mniejszych ekranach */
    }

    /* Przenosimy #socials-2 poniżej #socials-1 */
    #socials-1, #socials-2 {
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px; /* Odstęp między sekcjami */
    }

    /* Zmniejszamy iframe dla lepszej widoczności na telefonach */
    #map iframe {
        width: 100%;
        height: 450px; /* Zmniejsz wysokość iframe */
    }

    /* Jeśli chcesz dostosować ikony dla mniejszych ekranów */
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .about-content img {
        height: 300px;
        width: auto;
    }

    .about-content {
        display: flex;
        flex-direction: column;
    }

    .slider-controls {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 70%;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 535px) {
    .about-content img {
        height: 270px;
        width: 390px;
    }

    #about {
        padding: 80px 5%;
    }
}

@media screen and (max-width: 435px) {
    .about-content img {
        height: 270px;
        width: 350px;
    }

    #about {
        padding: 80px 5%;
    }
}

@media screen and (max-width: 370px) {
    .about-content img {
        height: 250px;
        width: 320px;
    }

    #about {
        padding: 80px 5%;
    }
}


/* FORM */

#booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.booking-form {
    display: flex;
    flex-direction: column;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
}

.booking-form label {
    margin-top: 10px;
    font-weight: bold;
}

.booking-form input,
.booking-form select {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form button {
    margin-top: 15px;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.booking-form button:hover {
    background: #555;
}

/* FOOTER */

footer {
    background: #2c2c2c;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-container div {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 26px;
    color: #ffd700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-contact p {
    margin: 5px 0;
}

.social-icons a {
    font-size: 24px;
    color: white;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

