* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background: #051622;
  color: #CCD6F6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 1000px;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #D4AF37;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.tagline {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #D4AF37;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.sticky {
  padding: 15px 50px;
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.header__logo h1 {
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 2px;
  color: #FFFFFF;
}
.header__logo span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #D4AF37;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  display: block;
  margin-top: -5px;
}
.header__nav {
  display: flex;
  gap: 40px;
}
.header__nav a {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav a:hover::after {
  width: 100%;
}
.header__lang {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}
.header__lang a {
  opacity: 0.6;
}
.header__lang a.active {
  color: #D4AF37;
  opacity: 1;
}
@media (max-width: 1023px) {
  .header {
    padding: 20px 30px;
  }
  .header__nav {
    display: none;
  }
}

.footer {
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 80px 50px 40px;
  color: #CCD6F6;
  margin-top: 100px;
  position: relative;
  z-index: 10;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.footer__brand h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer__col h3 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer__col ul li {
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.footer__col ul li a {
  opacity: 0.6;
}
.footer__col ul li a:hover {
  opacity: 1;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 1023px) {
  .footer {
    padding: 60px 30px 40px;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 10px;
}
.btn--primary {
  background: #D4AF37;
  color: #051622;
}
.btn--primary:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.btn--outline:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
}
.btn--sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .btn--sticky {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}

.wa-widget {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wa-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.wa-widget svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.card {
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.card:hover img {
  transform: scale(1.08);
}
.card__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card__image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(5, 22, 34, 0.8);
  color: #D4AF37;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.card__body {
  padding: 25px;
}
.card__body h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.card__body p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: rgba(204, 214, 246, 0.8);
  line-height: 1.4;
}
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
}
.card__footer .price {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #D4AF37;
  font-size: 1.2rem;
}
.card__footer .price span {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(204, 214, 246, 0.6);
  text-transform: uppercase;
  margin-left: 5px;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #051622 url("image/galle.jpg") no-repeat center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 50px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 22, 34, 0.9) 0%, rgba(5, 22, 34, 0.4) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  animation: fadeIn 1.2s ease-out;
}
.hero__content .tagline {
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.hero__content h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .hero__content h1 {
    font-size: 2.8rem;
  }
}
.hero__content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #CCD6F6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .hero__content p {
    font-size: 1.1rem;
  }
}
.hero__content .hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__content .hero__actions {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }
}

.section {
  padding: 120px 50px;
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
}
.section--alt {
  background: rgba(5, 22, 34, 0.4);
}
.section__header {
  margin-bottom: 60px;
  max-width: 700px;
}
.section__header .tagline {
  display: inline-block;
  margin-bottom: 15px;
}
.section__header h2 {
  margin-bottom: 20px;
}
.section__header p {
  opacity: 0.8;
  font-size: 1.15rem;
}
@media (max-width: 767px) {
  .section {
    padding: 80px 25px;
  }
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background: #051622 url("image/galle.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 50px;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 22, 34, 0.7), rgba(5, 22, 34, 0.9));
}
.about-hero__content {
  position: relative;
  z-index: 10;
}

.history-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023px) {
  .history-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.history-section__image {
  position: relative;
}
.history-section__image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #D4AF37;
  z-index: -1;
}
.history-section__image img {
  width: 100%;
  border-radius: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 40px;
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 12px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.03);
}
.service-item__icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.service-item__icon svg {
  width: 30px;
  height: 30px;
  fill: #D4AF37;
}
.service-item__content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}
.service-item__content p {
  font-size: 1rem;
  color: rgba(204, 214, 246, 0.7);
  margin: 0;
}
@media (max-width: 767px) {
  .service-item {
    flex-direction: column;
    padding: 30px;
  }
}

.contact-hero {
  height: 50vh;
  position: relative;
  overflow: hidden;
  background: #051622 url("image/galle.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 50px;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 22, 34, 0.7), rgba(5, 22, 34, 0.9));
}
.contact-hero__content {
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}
@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.map-container {
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 60px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/*# sourceMappingURL=style.css.map */
