body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.site-header .top-bar {
  background-color: #000;
  padding: 0.5rem 0;
}
.site-header .top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-header .top-bar .top-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-header .top-bar .top-contact .phone-number {
  font-size: 0.95rem;
  font-weight: 500;
}
.site-header .top-bar .top-contact .book-button {
  background-color: #e6a825;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-header .top-bar .top-contact .book-button:hover {
  background-color: #cf960c;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(230, 168, 37, 0.3);
}
.site-header .bottom-bar {
  background-color: #000;
  padding: 1rem 0;
}
.site-header .bottom-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-header .bottom-bar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header .bottom-bar .logo img {
  width: 400px;
  height: auto;
}
.site-header .bottom-bar .logo .logo-text h1 {
  font-size: 1.7rem;
  color: #f7d75b;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}
.site-header .bottom-bar .logo .logo-text p {
  font-size: 0.85rem;
  margin: 0;
  color: #f7d75b;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.site-header .bottom-bar .nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.site-header .bottom-bar .nav-menu ul li {
  position: relative;
}
.site-header .bottom-bar .nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}
.site-header .bottom-bar .nav-menu ul li a:hover {
  color: #e6a825;
}
.site-header .bottom-bar .nav-menu ul li.has-dropdown:hover .dropdown {
  display: block;
  animation: fadeIn 0.3s ease;
}
.site-header .bottom-bar .nav-menu ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  padding: 0.5rem 0;
  border-radius: 4px;
  min-width: 180px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.site-header .bottom-bar .nav-menu ul li .dropdown li a {
  padding: 0.6rem 1rem;
  color: #eee;
}
.site-header .bottom-bar .nav-menu ul li .dropdown li a:hover {
  background-color: #222;
  color: #e6a825;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-slider {
  position: relative;
  height: 30vh;
  overflow: hidden;
}
.hero-slider .slider-wrapper {
  height: 100%;
  position: relative;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slider .slide .slide-content {
  text-align: center;
  color: #fff;
  animation: fadeInText 1s ease;
}
.hero-slider .slide .slide-content h2 {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}
.hero-slider .slide .slide-content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #eee;
}
.hero-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}
.hero-slider .slider-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.hero-slider .slider-arrow.prev {
  left: 1rem;
}
.hero-slider .slider-arrow.next {
  right: 1rem;
}
.hero-slider .slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-slider .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
}
.hero-slider .slider-dots .dot.active {
  background: #e6a825;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.welcome-section {
  background: radial-gradient(ellipse at left center, #1e1e1e 0%, #111 60%, #000 100%);
  color: #fff;
  padding: 4rem 0;
}
.welcome-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.welcome-section .welcome-image {
  flex: 1;
  min-width: 320px;
}
.welcome-section .welcome-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.welcome-section .welcome-text {
  flex: 2;
  min-width: 320px;
}
.welcome-section .welcome-text h2 {
  font-size: 2rem;
  color: #f7d75b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
.welcome-section .welcome-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}
.welcome-section .welcome-text p strong {
  color: #e6a825;
}
.welcome-section .welcome-text .signature {
  margin-top: 2rem;
  font-style: italic;
  color: #ccc;
}

.site-footer {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.site-footer .footer-top {
  border-top: 2px solid #e6a825;
  padding: 3rem 1rem;
}
.site-footer .footer-top .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer .footer-top .footer-col {
  flex: 1;
  min-width: 280px;
}
.site-footer .footer-top .footer-col h4 {
  font-size: 1.2rem;
  color: #f7d75b;
  margin-bottom: 1rem;
}
.site-footer .footer-top .footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.site-footer .footer-top .footer-col p strong {
  color: #e6a825;
}
.site-footer .footer-top .footer-col a {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-top .footer-col a:hover {
  color: #e6a825;
}
.site-footer .footer-top .center {
  text-align: center;
}
.site-footer .footer-top .center .experience-logo {
  margin-bottom: 1rem;
}
.site-footer .footer-top .center .experience-logo .exp {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
}
.site-footer .footer-top .center .experience-logo .grand {
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 0.3rem;
  display: inline-block;
  border-bottom: 3px solid #e6a825;
  padding-bottom: 0.1rem;
}
.site-footer .footer-top .center .social-icons {
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.site-footer .footer-top .center .social-icons i {
  color: #fff;
  transition: color 0.3s;
}
.site-footer .footer-top .center .social-icons i:hover {
  color: #e6a825;
}
.site-footer .footer-bottom {
  background-color: #111;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  max-width: 360px;
  z-index: 9999;
  font-size: 0.95rem;
  display: none;
  animation: fadeIn 0.5s ease;
}
.cookie-popup a {
  color: #e6a825;
  text-decoration: underline;
}
.cookie-popup button {
  margin-top: 0.8rem;
  background: #e6a825;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}
.cookie-popup button:hover {
  background: #cf960c;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */