/* Google Font  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&family=Montserrat:wght@600;700&family=Lora:wght@400;500&display=swap");

/* Custom CSS  */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
::selection {
  background: linear-gradient(135deg, #1a365d 0%, #00a896 100%);
  color: white;
}
header {
  width: 100%;
  min-height: 120vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: background-image 1.5s ease-in-out;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%), url('home-images/pexels-tima-miroshnichenko-6827163.jpg');
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5%;
  background: rgba(8, 20, 38, 0.28);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}
nav img {
  width: 160px;
  height: auto;
  cursor: pointer;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}
nav img:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.02);
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  margin-left: 20px;
  flex-wrap: nowrap;
}
nav ul li {
  display: inline-flex;
}
nav ul li a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 6px 0;
}
nav ul li:hover > a {
  color: #00a896;
  transform: translateY(-1px);
}
nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  margin-top: 6px;
  transition: width 0.25s ease;
  background: #00a896;
}
nav ul li:hover a::after {
  width: 100%;
}
nav ul li.dropdown a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dropdown-menu {
  top: calc(100% + 12px);
  right: 0;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}
.nav-icon {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon:hover {
  color: #00a896;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(8, 20, 38, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: rgba(0, 168, 150, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}

#check-btn {
  display: none;
}
#check {
  display: none;
}
/* Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(135deg, #1a365d 0%, #007b92 100%);
  flex-direction: column;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 280px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(26, 54, 93, 0.3);
  margin-top: 10px;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu li {
  display: block;
  padding: 12px 20px;
  margin: 0;
}
.dropdown-menu li a {
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  color: #00a896;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding-left: 25px;
}
.head {
  text-align: left;
  justify-content: flex-start;
  color: white;
  margin-top: 15%;
  margin-left: 5%;
  animation: fadeInDown 1s ease-out;
  max-width: 600px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 86px;
  padding-bottom: 25px;
  line-height: 1.2em;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #ffeaa7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}
.head p {
  line-height: 1.8;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.5px;
  margin-bottom: 3%;
  color: rgba(255, 255, 255, 0.95);
}
button {
  padding: 15px 40px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00a896 0%, #1a365d 50%, #007b92 100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
  border: 2px solid rgba(0, 168, 150, 0.5);
  text-transform: uppercase;
}
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 54, 93, 0.4);
  background: linear-gradient(135deg, #fff 0%, #00a896 50%, #1a365d 100%);
  color: #1a365d;
}
#check-btn {
  font-size: 20px;
  color: white;
  float: right;
  flex: 1;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
/* Room Categories Section */
.room-categories {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  position: relative;
}

.room-categories .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #1a365d 0%, #00a896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-family: "Lora", serif;
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.category-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  color: white;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

.category-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.category-overlay p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Room Categories Responsive */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .section-header p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .room-categories {
    padding: 60px 0;
  }

  .room-categories .container {
    padding: 0 20px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 16px;
  }

  .category-image {
    height: 250px;
  }

  .category-overlay h3 {
    font-size: 24px;
  }

  .category-overlay p {
    font-size: 14px;
  }

  .nav-icons {
    gap: 18px;
  }

  .nav-icon {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .room-categories {
    padding: 40px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

  .category-image {
    height: 200px;
  }

  .category-overlay {
    padding: 25px 20px 20px;
  }

  .category-overlay h3 {
    font-size: 20px;
  }

  .category-overlay p {
    font-size: 12px;
  }
}
/* For screens smaller than 480px */
@media (max-width: 636px) {
  .head {
    margin-left: 5%;
    margin-top: 15%;
  }
  .head h1 {
    font-size: 50px;
  }
  .head p {
    font-size: 16px;
    padding-bottom: 5%;
  }
  button {
    padding: 8px 20px;
    font-size: 16px;
  }

  .nav-icons {
    gap: 15px;
  }

  .nav-icon {
    font-size: 16px;
    padding: 6px;
  }
}
/* Featured Video Section */
.featured-video {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.featured-video .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-video .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.featured-video .section-header h2 {
  font-size: 36px;
  color: #1a365d;
  margin-bottom: 10px;
}

.featured-video .section-header p {
  font-size: 18px;
  color: #4a5568;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive for video */
@media (max-width: 768px) {
  .video-container iframe {
    height: 250px;
  }

  .featured-video .section-header h2 {
    font-size: 28px;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #00a896;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e2e8f0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00a896;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #cbd5e0;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: white;
  background: #00a896;
  transform: translateY(-2px);
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #4a5568;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: #a0aec0;
}

.newsletter input:focus {
  outline: none;
  border-color: #00a896;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter button {
  padding: 10px 20px;
  background: #00a896;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #007b73;
}

.message-form {
  margin-top: 15px;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #4a5568;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: inherit;
}

.message-form input::placeholder,
.message-form textarea::placeholder {
  color: #a0aec0;
}

.message-form input:focus,
.message-form textarea:focus {
  outline: none;
  border-color: #00a896;
  background: rgba(255, 255, 255, 0.2);
}

.message-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px 15px;
}

.message-form button {
  padding: 10px 20px;
  background: #00a896;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  width: 100%;
}

.message-form button:hover {
  background: #007b73;
}
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  color: white;
}

.thank-you-card {
  text-align: center;
  max-width: 500px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.thank-you-card h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00a896;
}

.thank-you-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #edf2f7;
}

.thank-you-card a {
  display: inline-block;
  padding: 12px 30px;
  background: #00a896;
  color: white;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.thank-you-card a:hover {
  background: #007b73;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #a0aec0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }
}