/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    background: #3E2424;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #5D0002;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-accept {
    background: #fff;
    color: #5D0002;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #5D0002;
    color: #fff;
}

.btn-manage {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-manage:hover {
    background: #5D0002;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--primary {
    background-color: #5D0002;
    color: #fff;
    border-color: #5D0002;
}

.btn--primary:hover {
    background-color: #5D0002;
    border-color: #5D0002;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #ffffff;
}

.btn--secondary:hover {
    background-color: #5D0002;
    color: #fff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
    background: #3E2424;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #3E2424;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.nav__logo:hover {
    color: #fff;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: #fff;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5D0002;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span,
.nav__close span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav__toggle span:not(:last-child) {
    margin-bottom: 4px;
}

.nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.nav__close span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav__close span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    text-align: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.hero__description {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero__image {
    position: relative;
}

.hero__img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero-content {
    padding: 60px 0;
}

/* Hotels Section */
.hotels {
    
}

.hotels__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hotel__card {
   
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 24px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.10);

padding: 24px;
}

.hotel__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hotel__image {
    position: relative;
    overflow: hidden;
}

.hotel__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel__card:hover .hotel__img {
    transform: scale(1.05);
}

.hotel__content {
  
}

.hotel__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.hotel__description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hotel__link {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hotel__link:hover {
    color: #fff;
}

/* Heritage Section */
.heritage {
    
    color: #fff;
}

.heritage__header {
    text-align: center;
    margin-bottom: 60px;
}

.heritage__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.heritage__description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.heritage__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat__item {
    text-align: center;
}

.stat__number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.stat__label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Casino Resorts Section */
.casino-resorts {
   
}

.resorts__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.resort__card {
  
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 24px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.10);

padding: 24px;
}

.resort__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.resort__image {
    position: relative;
    overflow: hidden;
}

.resort__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resort__card:hover .resort__img {
    transform: scale(1.05);
}

.resort__content {
    
}

.resort__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.resort__description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resort__link {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.resort__link:hover {
    color: #fff;
}

/* FAQ Section */
.faq {
    
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: rgba(255, 255, 255, 0.10);
    
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.20);
}

.faq__question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #5D0002;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 0 30px 24px;
    max-height: 200px;
}

.faq__answer p {
    color: #fff;
    line-height: 1.6;
}

/* Contact Section */
.contact__container {
    max-width: 800px;
    margin: 0 auto;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__input,
.form__textarea {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #5D0002;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    
background: #5D0002;
    color: #fff;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #5D0002;
}

.footer__bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.14);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: #94a3b8;
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal-link {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: #5D0002;
}

/* Footer */
.footer {
   background: #5D0002;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-section h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.newsletter-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 320px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.newsletter-form:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
   background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.2rem;
    font-weight: 600;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #5D0002;
    transform: translateY(-2px);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 80px;
}

.contact-info {
    max-width: 530px;
    width: 100%;
}

.contact-info img {
    width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .section__title {
        font-size: 2.25rem;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__container {
        gap: 40px;
    }

    .heritage__title {
        font-size: 2.25rem;
    }

    .stat__number {
        font-size: 2.5rem;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media screen and (max-width: 768px) {
.contact-content {
    flex-direction: column;
}

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #5D0002;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav__link {
        font-size: 1.125rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: flex;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hotels__container,
    .resorts__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .heritage__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

     .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 120px 0;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1.125rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .heritage__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat__number {
        font-size: 2rem;
    }

    .heritage__title {
        font-size: 1.75rem;
    }

    .hotel__card,
    .resort__card {
        margin: 0 10px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-manage {
        width: 100%;
    }
}
              .page {
                padding: 180px 0 80px;
              }
              
              .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;
                }

                