.btn,
.footer-link,
.logo-bold {
  color: var(--white-100);
}
.btn,
.contact-section,
.facilities-heading,
.facility-box,
.hotel-label,
.section-heading,
.stats-wrapper,
.testimonials,
.text-center {
  text-align: center;
}
.dropdown-menu a,
.footer-link,
.hotel-card,
.logo,
a {
  text-decoration: none;
}
.btn,
.thank-you-section .btn {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.sr-only,
.visually-hidden {
  overflow: hidden;
  white-space: nowrap;
}
:root {
  --yellow-main: #f7cc46;
  --bg-light-grye: #f5f5f7;
  --green: #24ab70;
  --dark-blue: #232631;
  --green-light: #d0edab;
  --blue: #16243e;
  --white-700: rgba(255, 255, 255, 0.7);
  --green-light: #2a7b01;
  --green-blue: #07ac9e;
  --blue: #2776e8;
  --primary-100: #fa6832;
  --primary-bg: #ffd2c1;
  --white-100: #fff;
  --white-200: rgba(255, 255, 255, 0.2);
  --black-200: rgba(0, 0, 0, 0.2);
  --black-1000: #1c1c1c;
  --black-600: rgba(0, 0, 0, 0.6);
  --yellow-main: #f7cc46;
  --font-family: 'Nunito Sans', sans-serif;
  --second-family: 'Nunito Sans', sans-serif;
}
body {
  font-family: var(--font-family);
  font-weight: 400;
  background-color: var(--white-100);
  color: var(--black-1000);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.btn,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: var(--second-family);
}
.header--contact .logo-bold,
.header--contact .nav-link,
.hotel-info strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-blue);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  border: 0;
}
.section-subtext {
  margin-bottom: 24px;
  font-size: 1rem;
  text-align: center;
}
.advantages-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
  margin-bottom: 60px;
}

.advantage-box {
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: #fafafa;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.advantage-box:hover {
  border-color: #24ab70;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.advantage-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.advantage-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-width: 10.06rem;
  height: 3.25rem;
  background: var(--green-light);
  font-size: 0.88rem;
  line-height: 1.43;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.has-dropdown.open .dropdown-menu,
.logo,
.main-nav,
.nav-list {
  display: flex;
}
.btn:focus,
.btn:hover {
  background-color: #3f7b02a5;
}
.site-header {
  width: 100%;
  background: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
}
.logo {
  font-family: var(--second-family);
  font-size: 1.25rem;
  font-weight: 700;
  align-items: center;
}
.dropdown-toggle,
.nav-link {
  font-family: var(--font-family);
  font-size: 1rem;
}
.logo-accent {
  color: var(--green-light);
}
.nav-list {
  gap: 2rem;
  list-style: none;
}
.nav-link {
  font-weight: 400;
  color: var(--white-100);
  transition: color 0.3s;
}
.header--contact .contact-section {
  padding-top: 10rem;
}
.dropdown-menu a,
.dropdown-toggle,
.hero-content,
.hero-title {
  color: var(--white-100);
}
.nav-link:focus,
.nav-link:hover {
  color: var(--yellow-main);
}
.contact-btn {
  margin-left: 2rem;
}
.menu-toggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
}
.menu-icon,
.menu-icon::after,
.menu-icon::before {
  width: 1.5rem;
  height: 2px;
  background-color: var(--white-100);
}
.menu-icon {
  display: block;
  position: relative;
}
.menu-icon::after,
.menu-icon::before {
  content: '';
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.menu-icon::before {
  top: -6px;
}
.menu-icon::after {
  bottom: -6px;
}
@media (max-width: 1024px) {
  .nav-list {
    gap: 1.5rem;
  }
  .contact-btn {
    margin-left: 1.5rem;
  }
}
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  background: 0 0;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--blue);
  padding: 0.75rem 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
  z-index: 1000;
}
.dropdown-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  transition: background-color 0.2s;
}
.dropdown-menu a:focus,
.dropdown-menu a:hover {
  background-color: var(--primary-bg);
  color: var(--black-1000);
}
.about-text,
.about-visual,
.hero,
.hotel-card,
.hotel-label,
.image-back,
.image-stack {
  position: relative;
}
.hero {
  width: 100%;
  background: url('/images/bgs/bg-screen.jpg') center center/cover no-repeat;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  background-color: rgb(22 39 62 / 73%);
  display: flex;
  align-items: center;
}
.hero-content {
  padding: 2rem;
}
.hero-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 4.38rem;
  line-height: 1.09;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  color: #eee;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .hero-overlay {
    min-height: 34rem;
  }
  .hero-title {
    font-size: 4rem;
    line-height: 1.06;
  }
}
.stats-banner {
  background-color: var(--green-light);
  width: 100%;
}
.stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90rem;
  height: 10.25rem;
  padding: 1.5rem 8.44rem;
  margin: 0 auto;
  gap: 2rem;
}
.stat-box {
  flex: 1;
  color: var(--white-100);
}
.stat-number {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.stat-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .stats-wrapper {
    flex-direction: row;
    height: auto;
    padding: 2rem;
  }
  .stat-box {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .contact-btn,
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--blue);
    width: 100%;
    padding: 1rem;
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }
  .dropdown-menu {
    position: static;
    background: 0 0;
    padding: 0;
  }
  .dropdown-menu a {
    padding-left: 0;
  }
  .hero-overlay {
    min-height: 26rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: 2.62rem;
    line-height: 1.05;
  }
  .stats-wrapper {
    flex-direction: column;
    height: auto;
    padding: 2rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-text {
    font-size: 0.95rem;
  }
}
.about-mission,
.facilities,
.hotel-preview,
.hotel-types,
.legal-section,
.popular-hotels {
  padding: 4rem 1rem;
  background-color: var(--white-100);
}
.facilities-heading {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 3rem;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.facility-box {
  border: 1px solid var(--black-200);
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
  transition: box-shadow 0.3s;
}
.facility-box:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.facility-icon {
  width: 30px;
  object-fit: contain;
  height: auto;
  margin: 0 auto 1rem;
  filter: hue-rotate(50deg);
}
.facility-title,
.form-group label {
  margin-bottom: 0.5rem;
}
.facility-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-blue);
}
.facility-text {
  font-size: 0.95rem;
  color: var(--black-600);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-heading {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 2.5rem;
}
.hotel-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
.hotel-card {
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  overflow: hidden;
  color: var(--white-100);
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hotel-card:focus,
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  outline: 0;
}
.hotel-card:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 4px;
}
.hotel-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 95%);
  z-index: 1;
}
.hotel-label {
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hotel-logos {
  margin-top: 8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.hotel-logos img {
  height: 4.5rem;
  max-width: 100px;
  object-fit: contain;
}
.hotel-disclaimer {
  font-size: 0.8rem;
  color: var(--dark-blue);
}
.popular-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}
.popular-hotel-card {
  background-color: #fff;
  border: 1px solid var(--black-200);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.popular-hotel-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.popular-hotel-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}
.popular-hotels .hotel-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popular-hotels .hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popular-hotels .hotel-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
}
.popular-hotels .hotel-rating {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.popular-hotels .hotel-rating img {
  width: 1rem;
  height: 1rem;
}
.popular-hotels .hotel-details {
  font-size: 0.9rem;
  color: var(--black-600);
}
.popular-hotels .hotel-btn {
  width: 100%;
  padding: 1rem 0;
  font-size: 0.88rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .hotel-grid,
  .popular-hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-logos {
    justify-content: center;
  }
}
.testimonials {
  padding: 4rem 1rem;
  background-color: var(--bg-light-grye);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.quote-icon {
  width: 2rem;
  height: auto;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-1000);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.author-name,
.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-blue);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-photo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-section {
  padding: 4rem 1rem;
  background-color: var(--white-100);
}
.contact-description {
  font-size: 1rem;
  color: var(--black-600);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--black-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-family);
  resize: vertical;
}
.hotel-image,
.hotel-image img,
.image-back,
.image-front,
.person-card {
  border-radius: 0.5rem;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  outline: 0;
}
.form-disclaimer {
  font-size: 0.8rem;
  color: var(--black-600);
  line-height: 1.4;
}
.form-disclaimer a {
  color: var(--primary-100);
  text-decoration: underline;
}
.checkbox-group {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.checkbox-group label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--black-1000);
}
.checkbox-group a {
  color: var(--dark-blue);
  text-decoration: underline;
}
.checkbox-group input[type='checkbox'] {
  flex-shrink: 0;
}
.contact-submit {
  width: 100%;
  max-width: 100%;
  font-size: 0.88rem;
  padding: 1rem 2rem;
  text-align: center;
}
.site-footer {
  background-color: var(--green-light);
  padding: 1rem 1.5rem;
  color: var(--white-100);
  font-size: 0.875rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-copy {
  margin: 0;
}
.footer-link:focus,
.footer-link:hover {
  opacity: 0.8;
  color: var(--dark-blue);
}
@media (max-width: 600px) {
  .facilities-grid,
  .popular-hotels-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .facility-box {
    padding: 1.5rem;
  }
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .popular-hotel-card img {
    height: 12rem;
  }
  .contact-form {
    gap: 1rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
.hero--casino,
.hero--resort,
.hero--ski,
.hero--spa {
  background: url('/images/categories/resort-hotel-category.png') center
    center/cover no-repeat;
}
.hero--about .btn {
  margin-top: 4rem;
}
.hero--about {
  background: url('/images/bgs/about-us.jpg') center center/cover no-repeat;
}
.hero--legal {
  background-image: none !important;
  background-color: #000000;
}
.hotel-preview-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hotel-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}
.hotel-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black-1000);
  margin-bottom: 1rem;
}
.about-text p,
.legal-section p,
.legal-section ul li,
.mission-text p {
  font-size: 1rem;
  color: var(--black-1000);
}
.hotel-image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .hotel-preview-wrapper {
    grid-template-columns: 1fr;
  }
  .hotel-image {
    max-height: 18.75rem;
    overflow: hidden;
  }
  .hotel-image img {
    height: auto;
  }
  .hotel-preview--reverse .hotel-image {
    order: 2;
  }
}
.about-company {
  padding: 4rem 1rem;
  overflow: hidden;
}
.about-company-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}
.about-visual {
  flex: 1 1 50%;
  max-width: 500px;
  z-index: 1;
}
.about-text {
  flex: 1 1 40%;
  z-index: 3;
}
.about-text .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}
.about-text p,
.mission-text p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
.image-stack {
  max-width: 100%;
  padding-right: 2rem;
}
.image-back {
  max-width: 300px;
  display: block;
  z-index: 1;
}
.image-front,
.person-card,
.sr-only {
  position: absolute;
}
.image-front {
  max-width: 433px;
  bottom: 30px;
  left: 60px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.person-card {
  width: 160px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  z-index: 3;
}
.legal-date,
.thank-you-section {
  text-align: center;
  background-color: var(--bg-light-grye);
}
.person-card img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.person-card .name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.mission-text .mission-title,
.section-title {
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.person-card .rating strong {
  color: #f97316;
}
.card-one {
  top: 10px;
  left: 220px;
}
.card-two {
  top: 180px;
  left: 20px;
}
.card-three {
  top: 300px;
  left: 180px;
}
.about-mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
.mission-text {
  flex: 1 1 50%;
}
.mission-text .mission-title {
  font-size: 2rem;
  line-height: 1.3;
}
.mission-image {
  flex: 1 1 45%;
}
.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .about-company-wrapper {
    flex-direction: column;
  }
  .about-mission-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .mission-image,
  .mission-text {
    flex: 1 1 100%;
  }
}
.legal-section .container {
  max-width: 960px;
  margin: 0 auto;
}
.section-title {
  font-size: 1.75rem;
}
.legal-section p {
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.legal-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.legal-section ul li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.legal-date {
  padding: 1rem 1.5rem;
}
.update-info {
  font-size: 0.95rem;
  color: var(--black-600);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--black-600);
}
.footer-link {
  color: var(--white-100);
  transition: color 0.2s;
}
.divider {
  color: var(--black-200);
}
.thank-you-section {
  padding: 6rem 1rem;
  min-height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thank-you-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.thank-you-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}
.thank-you-message {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--black-1000);
  margin-bottom: 2rem;
}
.thank-you-section .btn {
  padding: 1rem 2rem;
}
.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
