 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.header-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.hero {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    background-image: url('./imgs/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8bc34a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #7cb342;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-image {
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rooms Section */
.rooms {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.rooms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.room-features {
    margin: 20px 0;
}

/* Services Section */
.services {
    padding: 60px 0;
}

.service-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.service-icon {
    flex: 0 0 80px;
    margin-right: 20px;
}

.service-content {
    flex: 1;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
}

.gallery-image {
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
}

.testimonials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
}

/* Booking Section */
.booking {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.booking-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

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

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-info {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-info {
        margin-bottom: 0;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        margin-bottom: 0;
    }
}

.footer-links a {
    margin: 5px 0;
}

@media (min-width: 768px) {
    .footer-links a {
        margin: 0 15px;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-banner h2 {
    margin-bottom: 10px;
}

.cookie-categories {
    margin: 15px 0;
}

.cookie-categories li {
    margin-bottom: 5px;
    list-style-type: disc;
    margin-left: 20px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn-accept {
    background-color: #8bc34a;
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    background-color: #7cb342;
}

.cookie-btn-necessary {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-btn-necessary:hover {
    background-color: #f5f5f5;
}

.cookie-btn-settings {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-btn-settings:hover {
    background-color: #f5f5f5;
}

.hidden {
    display: none;
}