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

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

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

/* Header */
header {
    background: #fff;
    padding: 30px 0;
    border-bottom: none;
    position: relative;
    z-index: 100;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000;
}
.logo a {
    text-decoration: none;
    color: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 40px;
}

.hero-content {
    max-width: 1000px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

/* Comfort Section */
.comfort-section {
    padding: 120px 40px;
    background: #f5f5f5;
}

.comfort-section .container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
}

.comfort-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.25;
    color: #000;
}

.comfort-text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: #555;
}

.comfort-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Rooms Section - Slider */
.rooms-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 80px;
    color: #000;
}

.room-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.room-slide {
    display: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.room-slide.active {
    display: grid;
    opacity: 1;
}

.room-slide[data-room="1"] {
    grid-template-columns: 1.5fr 1fr;
}

.room-slide[data-room="1"] .room-image {
    order: 2;
}

.room-slide[data-room="1"] .room-info {
    order: 1;
}

.room-image {
    position: relative;
}

.room-image img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #e91e84;
}

.room-info {
    background: #fff;
    padding: 40px;
}

.room-info h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

.room-info p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
}

.room-info ul {
    list-style: none;
    margin: 25px 0;
}

.room-info ul li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #555;
}

.room-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 18px;
}

.room-cta {
    font-size: 16px;
    font-weight: 300;
    margin-top: 25px;
    color: #555;
}

/* Stay Section */
.stay-section {
    padding: 120px 40px;
    background: #fff;
}

.stay-section .container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
}

.stay-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.25;
    color: #000;
}

.stay-text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: #555;
}

.stay-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Partners Section */
.partners-section {
    padding: 100px 40px;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card {
    text-align: left;
}

.partner-image {
    margin-bottom: 30px;
}

.partner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.partner-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.partner-location {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.partner-card p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
}

.testimonial-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #000;
}

.testimonial-content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* Booking Section */
.booking-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.booking-form {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input {
    padding: 20px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 300;
    background: #fff;
    color: #333;
}

.booking-form input:focus {
    outline: none;
    border-color: #e91e84;
}

.booking-form input::placeholder {
    color: #999;
}

.btn-primary {
    background: #e91e84;
    color: #fff;
    padding: 20px 40px;
    border: none;
    border-radius: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c71868;
}

.btn-secondary {
    background: transparent;
    color: #e91e84;
    padding: 18px 40px;
    border: 2px solid #e91e84;
    border-radius: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e91e84;
    color: #fff;
}

/* Footer */
footer {
    background: #2a2a2a;
    color: #fff;
    padding: 50px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.footer-links p {
    font-size: 15px;
    font-weight: 300;
    margin-top: 25px;
}

/* Success Page */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.success-content {
    max-width: 900px;
    color: #fff;
}

.success-content h1 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.3;
}

.success-content .btn-primary {
    display: inline-block;
    text-decoration: none;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 50px 40px;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 30px;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .section-title {
        font-size: 38px;
    }

    .comfort-text h2,
    .stay-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .comfort-section .container,
    .stay-section .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .room-slide,
    .room-slide[data-room="1"] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-slide[data-room="1"] .room-image,
    .room-slide[data-room="1"] .room-info {
        order: initial;
    }

    .partners-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    nav {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 20px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .comfort-text h2,
    .stay-text h2 {
        font-size: 28px;
    }

    .room-info h3 {
        font-size: 26px;
    }

    .partner-card h3 {
        font-size: 26px;
    }

    .comfort-section,
    .stay-section,
    .rooms-section,
    .partners-section,
    .testimonials-section,
    .booking-section {
        padding: 60px 20px;
    }

    .room-info {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    footer {
        padding: 40px 20px;
    }

    .success-content h1 {
        font-size: 32px;
    }
}