* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 8px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

header.scrolled .logo {
  color: #333;
}

/* Centered Navigation */
.centered-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 10;
  margin-top: 30px;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 10px;
}

.mobile-toggle .close-icon {
  display: none;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}

.nav-links li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #CC5825;
}

.nav-links.show {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.027);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  animation: fadeIn 0.6s ease;
  width: 100%;
  max-width: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    font-size: 16px;
    color: #fff;
  }

  nav ul li {
    margin: 0;
    text-align: center;
    padding: 10px 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('images/outside-e.webp') no-repeat center center / cover;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  max-width: 800px;
}

/* Hero Text */
.hero h1 {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
}

.hero p i{
  font-size: 18px;
  max-width: 400px;
  font-family: 'Poppins', sans-serif;
}

/* Hero Button */
.btn {
  display: inline-block;
  background: #CC5825;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}

.btn:hover {
  transform: translateY(-3px);
  background: #853918
}

/* Typing Effect Container */
.typing-text-top {
  margin-bottom: 20px;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.typing-text-top span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 25px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  color: #333;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}
.section-title p {
  color: #414141;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 2;
  min-width: 300px;
  font-family: 'Poppins', sans-serif;
}
.about-text h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}
.about-text p {
  color: #414141;
  margin-bottom: 20px;
}
.about-text a {
  font-weight: 1000;
  color: #070707;

}

.about-logo {
  flex: 1;
  max-width: 200px;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid #CC5825;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}
.about-logo:hover img {
  transform: scale(1.05);
}

.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive for smaller screens */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Rooms Section */
.room-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 100px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #333;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 24px;
    color: #CC5825;
    margin-bottom: 8px;
}

.service-card span {
    font-family: 'Poppins', sans serif;
    font-size: 15px;
}
.rooms {
    padding: 100px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-carousel {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 5px;
}

.room-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.7s ease;
  opacity: 0;
}

.room-slide.active {
  opacity: 1;
  z-index: 1;
}

.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffffcc;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  color: #CC5825;
  transform: translateY(-50%) scale(1.2);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.room-price-badge {
  background-color: #CC5825;
  color: #fff;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
}

.room-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.room-price-bubble .price {
    font-weight: 700;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Poppins', sans serif
}

.room-info p {
    color: #424242;
    margin-bottom: 15px;
    font-family: 'Poppins', sans serif
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.room-price-bubble {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #CC5825; /* gold tone */
    color: #070707;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* Gallery Section */
.gallery {
  padding: 50px 0 100px;
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 30px;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 20px 120px;
  text-align: center;
  background-color: #ffffff;
}

.reviews-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.reviews-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  font-family: 'Poppins', sans-serif;
}

.review-card {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  min-height: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
  margin: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-author {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .reviews-carousel {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    min-height: auto;
  }

  .review-card {
    width: 90%;
    max-width: 320px;
  }
}

/* Contact Section */
.gold-jump {
    color: #CC5825;
    font-weight: 700;
    display: inline-block;
}

.jump-letter {
    display: inline-block;
    animation: jump 1.5s ease-in-out infinite;
}

.jump-letter:nth-child(1) { animation-delay: 0s; }
.jump-letter:nth-child(2) { animation-delay: 0.2s; }

.contact {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.section-title p {
    font-family: 'Poppins', sans-serif
}

.section-title h2 {
    font-family: 'Poppins', sans-serif
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.contact-centered {
    flex: 1 1 500px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.frosted-card {
    backdrop-filter: blur(10px);
    background-color: rgba(223, 223, 223, 0.123);
    border: 1px solid rgba(250, 250, 250, 0.3);
    border-radius: 20px;
    padding: 20px 30px;
    color: #333;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.frosted-card:hover {
   transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #CC5825; /* optional golden glow */
    backdrop-filter: blur(12px);
}

.frosted-card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #CC5825;
}
.frosted-card strong {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.frosted-card p,
.frosted-card a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    text-align: center;
    word-wrap: break-word;
}

/* map */
.map-side {
   flex: 1 1 500px;
    max-width: 550px;
    padding: 10px; /* this creates the visual spacing */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-side iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 15px;
    display: block;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
    position: relative;
}

.typing-text-bottom  {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #CC5825;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #ffffff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.typing-text-bottom span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.typing-text #typewriter {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.footer-content {
    margin-bottom: 30px;
    
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.copyright {
    margin-top: 30px;
    color: #aaa;
    font-size: 14px;
}

.facebook-vertical {
    position: absolute;
    left: 0;
    bottom: 140px;
    transform: rotate(-270deg) translateY(-50%);;
    transform-origin: left center;
    z-index: 1000;
}

.facebook-vertical a {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.facebook-vertical a:hover {
    color: #0084ff;
}

/*Fonts*/
.section-title h2,
.section-title p,
.about-text h3,
.about-text p,
.review-card p,
.reviews-section h5,
.reviews-section span,
.reviews-section h2,
.review-author,
.frosted-card p,
.frosted-card a {
    font-family: 'Poppins', sans-serif;
}

/* Responsive Styles (moblie/small screens)*/
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.027);
        backdrop-filter: blur(12px);
        border-radius: 10px;
        animation: fadeIn 0.6s ease;
        width: 100%;
        max-width: 300px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li a {
        font-size: 16px;
        color: #fff;
        text-decoration: none;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }
    
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }

    .reviews-carousel {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    min-height: auto; /* override default height */
  }

  .review-card {
    width: 90%;
    max-width: 320px;
  }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact - layout on smaller screens */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-centered {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .frosted-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 901px) {
  .contact-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "center center"
      "left right";
    gap: 20px;
    align-items: center;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .frosted-card:nth-child(1) {
    grid-area: center;
  }

  .frosted-card:nth-child(2) {
    grid-area: left;
  }

  .frosted-card:nth-child(3) {
    grid-area: right;
  }

  .frosted-card:nth-child(4) {
    grid-column: 1 / span 2;
    justify-self: center;
  }
}

/*Keyframes*/

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/*Nav*/
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


