/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    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;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #ff8c00;
    text-decoration: none;
}

.cookie-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #e67e00;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ff8c00;
    border-radius: 0 0 25px 25px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Krona One', sans-serif;
    color: white;
    font-size: 18px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Krona One', sans-serif;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #333;
    font-weight: 400;
}

.hero-image {
    margin: 40px auto;
    overflow: hidden;
    max-width: 730px;
    display: block;
}

.hero-description,
.hero-subtitle {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.explore-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-family: 'Krona One', sans-serif;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #333;
    font-weight: 400;
}

.section-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
    max-width: 800px;
}

/* Threads Section */
.threads {
    padding: 80px 0;
    background: #fafafa;
}

.threads .container {
    text-align: center;
}

/* Values Section */
.values {
    padding: 80px 0;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-image {
    border-radius: 15px;
    overflow: hidden;
}

.values-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.values-footer {
    font-style: italic;
    color: #777;
}

/* Casino Section */
.casino {
    padding: 80px 0;
    background: #fafafa;
}

.casino-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.casino-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.casino-image {
    border-radius: 15px;
    overflow: hidden;
}

/* Luxury Section */
.luxury {
    padding: 80px 0;
    text-align: center;
}

/* Comfort Section */
.comfort {
    padding: 80px 0;
    background: #fafafa;
}

.comfort-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.comfort-image {
    border-radius: 15px;
    overflow: hidden;
}

.comfort-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

/* Adults Section */
.adults {
    padding: 80px 0;
    text-align: center;
}

/* Travel Section */
.travel {
    padding: 80px 0;
    background: #fafafa;
}

.travel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.travel-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.travel-image {
    border-radius: 15px;
    overflow: hidden;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
}

.submit-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Krona One', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #ff8c00;
}

.footer-links {
    text-align: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 20px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
}

.footer-nav {
    background: #ff8c00;
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .values-content,
    .casino-content,
    .comfort-content,
    .travel-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ff8c00;
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        transition: left 0.3s ease;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .values-content,
    .casino-content,
    .comfort-content,
    .travel-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .casino-content {
        grid-template-columns: 1fr;
    }
    
    .casino-text {
        order: 2;
    }
    
    .casino-image {
        order: 1;
    }
    
    .footer-nav a {
        display: block;
        margin: 10px 0;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .hero-description,
    .hero-subtitle,
    .section-text {
        font-size: 14px;
    }
    
    .nav-brand h1 {
        font-size: 16px;
    }
    
    .footer-brand {
        font-size: 20px;
    }
    
    .footer-nav {
        padding: 15px;
    }
    
    .footer-nav a {
        font-size: 12px;
        margin: 5px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section padding adjustments */
section {
    scroll-margin-top: 100px;
}
              .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;
                }

                