@import url('https://fonts.googleapis.com/css?family=Montserrat');

body {
    font-family: Montserrat, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #e8f6f4;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.hero {
    background: url('/img/a-1.webp') center/cover no-repeat;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
}

.intro {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.intro .container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.intro-image, .intro-text {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 5px;
}

.intro-text {
    padding: 0 20px;
}

.intro h2 {
    font-size: 2em;
}

.intro p {
    font-size: 1em;
}

@media (max-width: 768px) {
    .intro .container {
        flex-direction: column;
    }

    .intro-image {
        order: 2;
    }

    .intro-text {
        order: 1;
    }
}

.hotels {
    padding: 40px 20px;
    text-align: center;
}

.category {
    padding: 40px 0px;
}

.hotel-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
    max-width: 1240px;
    margin: 0 auto;
}

.hotel-card {
    background-color: #fff;
    padding: 0px;
    width: calc(33.33% - 20px);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 30px;
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.hotel-card h4 {
    margin-top: 10px;
    font-size: 1.2em;
    margin: 20px 20px;
}

.hotel-card p {
    font-size: 0.9em;
    margin: 0px 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #008e39;
    text-decoration: none;
    border-radius: 50px;
    margin: 20px 20px;
}
.button:hover{
    background-color: #06682d;
}

@media (max-width: 768px) {
    .hotel-card {
        width: 100%;
    }
}

.contact-footer {
    background-color: #111437;
    color: #fff;
}

.contact {
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2em;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact label {
    display: block;
    margin-top: 10px;
}

.contact input, .contact textarea {
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

.contact button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.explore {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.explore .container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.explore-image, .explore-text {
    flex: 1;
}

.explore-image img {
    width: 100%;
    border-radius: 5px;
}

.explore-text {
    padding: 0 20px;
}

.explore h2 {
    font-size: 2em;
}

.explore p {
    font-size: 1em;
}

@media (max-width: 768px) {
    .explore .container {
        flex-direction: column;
    }

    .explore-image {
        order: 1;
    }

    .explore-text {
        order: 2;
    }
}

.tips {
    padding: 40px 20px;
    background-color: #fff;
}

.tips .container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tips-text, .tips-image {
    flex: 1;
}

.tips-image img {
    width: 100%;
    border-radius: 5px;
}

.tips-text {
    padding: 0 20px;
}

.tips h2 {
    font-size: 2em;
}

.tips p {
    font-size: 1em;
}

@media (max-width: 768px) {
    .tips .container {
        flex-direction: column;
    }

    .tips-text {
        order: 1;
    }

    .tips-image {
        order: 2;
    }
}

.small-footer {
    background-color: #222;
    padding: 10px 20px;
    font-size: 0.9em;
}

.small-footer .container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.small-footer p {
    margin: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .small-footer .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        margin-top: 10px;
    }
    .footer-links a {
        margin: 0 10px;
    }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

#cookie-banner p {
    margin: 0;
    padding: 0;
}

#accept-btn {
    background-color: #008e39;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

#accept-btn:hover {
    background-color: #06682d;
}

.hide {
    display: none;
}