* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(139, 126, 102, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 600;
    color: #4a5d23;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('static/pool.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    filter: blur(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('static/pool.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-btn {
    background: #6b7c32;
    color: #f5f0eb;
    border: 2px solid #6b7c32;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: inherit;
}

.booking-btn:hover {
    background: transparent;
    color: #6b7c32;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(107, 124, 50, 0.2);
}

.about, .lounge {
    padding: 120px 0;
    background: #f5f0eb;
}

.lounge {
    background: #f9f6f2;
}

.about-content, .lounge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2, .lounge-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #4a5d23;
    margin-bottom: 2rem;
    font-family: 'Dancing Script', cursive;
    line-height: 1.2;
}

.about-text p, .lounge-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text ul, .lounge-text ul {
    list-style: none;
    padding: 0;
}

.about-text li, .lounge-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.about-text li::before, .lounge-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6b7c32;
    font-weight: bold;
    font-size: 1.2em;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-track img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
}

.lounge-carousel .carousel-track {
    width: 200%;
}

.lounge-carousel .carousel-track img {
    width: 50%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 240, 235, 0.9);
    border: 1px solid rgba(107, 124, 50, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 2px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: #6b7c32;
}

.carousel-btn:hover {
    background: #6b7c32;
    color: #f5f0eb;
    box-shadow: 0 4px 12px rgba(107, 124, 50, 0.3);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.footer {
    background: #3d4a1f;
    color: #f5f0eb;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: rgba(245, 240, 235, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #8b9a4a;
    text-decoration: underline;
}

.cookie-read-more {
    color: rgba(245, 240, 235, 0.9) !important;
    text-decoration: underline;
}

.cookie-read-more:hover {
    color: #f5f0eb !important;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: #f5f0eb;
    letter-spacing: 0.5px;
}

.contact-info p {
    margin: 8px 0;
    color: rgba(245, 240, 235, 0.8);
    font-size: 0.95rem;
}

.contact-info a {
    color: #8b9a4a;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #f5f0eb;
    margin: 5% auto;
    padding: 45px;
    border-radius: 4px;
    width: 90%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 40px rgba(107, 124, 50, 0.15);
    border: 1px solid rgba(107, 124, 50, 0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    color: #4a5d23;
    margin-bottom: 35px;
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(107, 124, 50, 0.3);
    border-radius: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: #6b7c32;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 2px rgba(107, 124, 50, 0.1);
}

.submit-btn {
    width: 100%;
    background: #6b7c32;
    color: #f5f0eb;
    border: 2px solid #6b7c32;
    padding: 16px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: transparent;
    color: #6b7c32;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(107, 124, 50, 0.2);
}

.notification {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #6b7c32;
    color: #f5f0eb;
    padding: 22px;
    border-radius: 3px;
    box-shadow: 0 8px 20px rgba(107, 124, 50, 0.3);
    z-index: 3000;
    max-width: 320px;
    border: 1px solid rgba(107, 124, 50, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(61, 74, 31, 0.95);
    color: #f5f0eb;
    padding: 25px;
    z-index: 1500;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(107, 124, 50, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-btn {
    background: #6b7c32;
    color: #f5f0eb;
    border: 1px solid #6b7c32;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: transparent;
    color: #6b7c32;
    background: #f5f0eb;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content, .lounge-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        font-size: 2rem;
    }
}
