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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cookie-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-accept {
    background: #9b8ce8;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #8a7bd8;
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    border-color: #999;
    color: #333;
}

.cookie-popup.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(70, 75, 100, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-brand h1 {
    color: white;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #9b8ce8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(70, 75, 100, 0.6), rgba(70, 75, 100, 0.6)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    color: white;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-button {
    background: #9b8ce8;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    background: #8a7bd8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 140, 232, 0.4);
}

.room-number {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 32px;
    font-weight: 300;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Architecture Section */
.architecture {
    background: #f0f4f7;
    padding: 100px 0;
}

.architecture-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    background: white;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.architecture h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.3;
}

.architecture p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

/* Pool Section */
.pool-section {
    background: #e8f4fd;
    padding: 100px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pool-image {
    position: relative;
}

.pool-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pool-text h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.pool-text p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

/* Spa Section */
.spa-section {
    background: white;
    padding: 100px 0;
}

.spa-text h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.spa-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

.spa-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Room Section */
.room-section {
    background: #e8f4fd;
    padding: 100px 0;
}

.room-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-text h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.room-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

/* Nature Section */
.nature-section {
    background: #f0f4f7;
    padding: 100px 0;
}

.nature-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    background: white;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.nature-section h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.3;
}

.nature-section p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

/* Testimonials */
.testimonials {
    background: #e8f4fd;
    padding: 100px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 80px;
    font-weight: 400;
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #9b8ce8;
    position: relative;
}

.testimonial p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
}

.testimonial cite {
    color: #9b8ce8;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
}

/* Statistics */
.statistics {
    background: #f0f4f7;
    padding: 100px 0;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.statistics h2 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 80px;
    font-weight: 400;
    line-height: 1.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.stat {
    background: white;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-single {
    grid-column: 1 / span 3;
    max-width: 400px;
    margin: 0 auto;
}

.stat-number {
    font-size: 56px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #464b64;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 768px) {
    .footer-content {
        align-items: center;
    }

}

.footer-links a {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #9b8ce8;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #5a5f7a;
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 300;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #333;
}

.modal h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b8ce8;
    background: white;
}

.submit-btn {
    width: 100%;
    background: #9b8ce8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: #8a7bd8;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(70, 75, 100, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 25px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-overlay {
        padding: 0 20px;
    }

    .hero-content h2 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .room-number {
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        padding: 10px 20px;
    }

    .architecture-container,
    .nature-container {
        padding: 60px 40px;
        margin: 0 20px;
    }

    .architecture h2,
    .nature-section h2 {
        font-size: 32px;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .pool-text h2,
    .spa-text h2,
    .room-text h2 {
        font-size: 32px;
    }

    .testimonials-container,
    .statistics-container,
    .footer-container {
        padding: 0 20px;
    }

    .testimonials h2,
    .statistics h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

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

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

    .stat-single {
        grid-column: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .cookie-content {
        padding: 30px;
        margin: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 22px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 12px;
    }

    .architecture-container,
    .nature-container {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .architecture h2,
    .nature-section h2 {
        font-size: 28px;
    }

    .architecture p,
    .nature-section p {
        font-size: 16px;
    }

    .pool-text h2,
    .spa-text h2,
    .room-text h2 {
        font-size: 28px;
    }

    .testimonials h2,
    .statistics h2 {
        font-size: 28px;
    }

    .cookie-content {
        padding: 25px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .testimonial {
        padding: 30px 25px;
    }

    .stat {
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects for images */
.pool-image img,
.spa-image img,
.room-image img {
    transition: transform 0.3s ease;
}

.pool-image:hover img,
.spa-image:hover img,
.room-image:hover img {
    transform: scale(1.02);
}