@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #0f1a2c;
  --secondary-color: #f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
  --success-color: #10b981;
  --error-color: #ef4444;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section__header {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
  line-height: 1.2;
}

.section__description {
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--secondary-color);
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #e09b0f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(246, 172, 15, 0.3);
}

/* Navigation */
nav {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav__bar {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--secondary-color);
}

.logo div {
  font-size: 1.5rem;
  font-weight: 800;
}

.logo span {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.2;
}

.nav__menu__btn {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--secondary-color);
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3f 100%);
  color: var(--white);
  padding: 8rem 1rem;
  text-align: center;
}

.header__container h1 {
  font-size: 4rem;
  margin: 1rem 0;
  line-height: 1.2;
}

.header__container .btn {
  margin-top: 2rem;
}

/* About Section */
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__grid {
  display: flex;
  gap: 1rem;
}

.about__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about__content h2 {
  margin: 1rem 0;
}

/* Map Section */
.map__section {
  background-color: var(--extra-light);
  padding: 5rem 1rem;
}

.map__section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.map__section p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.map__container {
  max-width: var(--max-width);
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Activities/Rooms Section */
.room__container {
  background-color: var(--extra-light);
  padding: 5rem 1rem;
}

.room__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem 2rem;
  margin-top: 3rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.room__card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.room__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.room__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room__card__details {
  padding: 2rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.room__card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Intro Section */
.intro {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3f 100%);
  color: var(--white);
}

.intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro__content h2 {
  color: var(--white);
  margin: 1rem 0;
}

.intro__content .section__description {
  color: rgba(255, 255, 255, 0.9);
}

.intro__video {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro__video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Gallery Section */
.gallery__section {
  background-color: var(--extra-light);
  padding: 5rem 1rem;
}

.gallery__container {
  max-width: var(--max-width);
  margin: auto;
}

.gallery__header {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--header-font);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery__card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery__card:hover {
  transform: scale(1.05);
}

.gallery__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Features Section */
.feature__container {
  background-color: var(--white);
}

.feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature__card {
  background: var(--extra-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature__card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature__card span {
  font-size: 2.5rem;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 1rem;
}

.feature__card h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature__card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* News/Menu Section */
.news {
  background-color: var(--extra-light);
}

.news__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 100%;
}

.news__card {
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}

.news__card img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Booking Section */
.booking__section {
  background-color: var(--extra-light);
  padding: 5rem 1rem;
}

.booking__container {
  max-width: 700px;
  margin: auto;
}

.booking__container h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.booking__form {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--extra-light);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(246, 172, 15, 0.1);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.booking__btn {
  width: 100%;
  margin-top: 1rem;
}

.booking__message {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.booking__message.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  border-left: 4px solid var(--success-color);
  display: block;
}

.booking__message.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error-color);
  border-left: 4px solid var(--error-color);
  display: block;
}

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 1rem;
}

.site-footer__container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.site-footer__left h2 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.site-footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__follow-text {
  font-weight: 600;
  color: var(--secondary-color);
}

.site-footer__social-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__social-link:hover {
  color: var(--secondary-color);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__contact-text {
  font-weight: 600;
  color: var(--secondary-color);
}

.site-footer__contact-phone,
.site-footer__address {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__contact-phone:hover {
  color: var(--secondary-color);
}

.site-footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section__header {
    font-size: 2rem;
  }

  .header__container h1 {
    font-size: 2.5rem;
  }

  .nav__links {
    gap: 1rem;
  }

  .nav__menu__btn {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav__links.open {
    max-height: 400px;
  }

  .nav__links a {
    display: block;
    padding: 1rem 2rem;
  }

  .about__container,
  .intro__container,
  .site-footer__container {
    grid-template-columns: 1fr;
  }

  .booking__form {
    padding: 2rem 1rem;
  }

  .room__grid,
  .gallery__grid,
  .feature__grid {
    grid-template-columns: 1fr;
  }

  .booking__btn {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .section__container {
    padding: 3rem 1rem;
  }

  .header {
    padding: 4rem 1rem;
  }

  .header__container h1 {
    font-size: 1.8rem;
  }

  .section__header {
    font-size: 1.5rem;
  }

  .nav__bar {
    padding: 1rem;
  }

  .logo span {
    font-size: 0.7rem;
  }

  .nav__menu__btn {
    font-size: 1.2rem;
  }
}
