/* Easysleephotel Website Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.accept-btn, .decline-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background: #4CAF50;
    color: white;
}

.accept-btn:hover {
    background: #45a049;
}

.decline-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.decline-btn:hover {
    background: white;
    color: #333;
}

.cookie-policy {
    color: #4CAF50;
    text-decoration: underline;
}

/* Header */
.header {
    background: #4CAF50;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Adamina', serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
    text-align: center;
}

.hero-title {
    font-family: 'Adamina', serif;
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subdescription {
    font-size: 14px;
    margin-bottom: 40px;
    color: #666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin: 40px 0;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: #8B4513;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #7a3a10;
}

/* Sections */
.about-section,
.values-section,
.casino-section,
.spa-section,
.lumen-section,
.noctura-section,
.executive-section,
.solaro-section {
    padding: 80px 0;
}

.about-section {
    background: white;
}

.about-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.about-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
}

.values-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-family: 'Adamina', serif;
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
}

.values-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

/* Casino Section */
.casino-section {
    background: white;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-family: 'Adamina', serif;
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
}

.section-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Spa Section */
.spa-section {
    background: #f8f9fa;
    text-align: center;
}

.spa-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.spa-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Lumen Section */
.lumen-section {
    background: white;
}

/* Noctura Section */
.noctura-section {
    background: #f8f9fa;
    text-align: center;
}

.noctura-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.noctura-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Executive Section */
.executive-section {
    background: white;
}

/* Solaro Section */
.solaro-section {
    background: #f8f9fa;
    text-align: center;
}

.solaro-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.solaro-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking Section */
.booking-section {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.booking-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-section > p {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: white;
    color: #333;
}

.submit-btn {
    background: #4CAF50;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #45a049;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .values-content,
    .section-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #4CAF50;
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin-bottom: 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .values-content,
    .section-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-content:nth-child(odd) {
        flex-direction: column-reverse;
    }
    
    .about-section h2,
    .spa-section h2,
    .noctura-section h2,
    .solaro-section h2,
    .booking-section h2 {
        font-size: 28px;
    }
    
    .values-text h2,
    .section-text h2 {
        font-size: 26px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description,
    .hero-subdescription {
        font-size: 14px;
    }
    
    .about-section h2,
    .spa-section h2,
    .noctura-section h2,
    .solaro-section h2,
    .booking-section h2 {
        font-size: 24px;
    }
    
    .values-text h2,
    .section-text h2 {
        font-size: 22px;
    }
    
    .footer-nav,
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .accept-btn,
    .decline-btn {
        width: 100%;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                