* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cormorant Garamond", "Georgia", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
/* Top Bar */
.top-bar {
  background: #2a2a2a;
  color: #fff;
  padding: 12px 0;
  font-size: 13px;
}
.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.reservation-number {
  color: #f4d03f;
  font-weight: 600;
}
.book-btn-top {
  background: transparent;
  color: #f4d03f;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.3s;
}
.book-btn-top:hover {
  color: #fff;
}
/* Header */
header {
  background: #fff;
  padding: 25px 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo {
  text-align: center;
  margin-bottom: 25px;
}
.logo h1 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #1a1a1a;
}
.logo p {
  font-size: 11px;
  letter-spacing: 4px;
  color: #888;
  margin-top: 5px;
}
/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 18px 25px;
  display: block;
  transition: all 0.3s;
  font-weight: 500;
}
nav a:hover,
nav a.active {
  background: #f4d03f;
  color: #1a1a1a;
}
/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #1a1a1a;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: -90px;
}
.mobile-nav {
  display: none;
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("./img/banner.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 60px 20px 180px;
}
.hero p.tagline {
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-weight: 300;
}
.hero h2 {
  font-family: "Brush Script MT", cursive;
  font-size: 72px;
  font-weight: 400;
  margin-bottom: -10px;
  color: #f4d03f;
}
.hero h3 {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.hero p.subtitle {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 35px;
  font-style: italic;
}
.view-rooms-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 16px 45px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.view-rooms-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}
/* Booking Form */
.booking-form {
  background: #fff;
  padding: 35px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  display: flex;
  gap: 25px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  min-width: 180px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.3s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f4d03f;
}
.check-availability-btn {
  background: #1a1a1a;
  color: #f4d03f;
  padding: 14px 35px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s;
}
.check-availability-btn:hover {
  background: #f4d03f;
  color: #1a1a1a;
}
/* Welcome Section */
.welcome-section {
  max-width: 1400px;
  margin: 150px auto 100px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.welcome-text h3 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.3;
}
.welcome-text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
  font-size: 15px;
}
.read-more-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 14px 35px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
}
.read-more-btn:hover {
  background: #1a1a1a;
  color: #f4d03f;
}
.welcome-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.welcome-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s;
}
.welcome-images img:hover {
  transform: scale(1.05);
}
/* Specials Section */
.specials-section {
  background: #f8f8f8;
  padding: 100px 40px;
  text-align: center;
}
.specials-section h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.specials-section h3 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
}
.specials-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}
.special-card {
  background: #fff;
  position: relative;
  overflow: hidden;
  height: 450px;
  cursor: pointer;
}
.special-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.special-card:hover img {
  transform: scale(1.1);
}
.special-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.special-badge {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
}
.special-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.4;
}
.read-more-special {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.3s;
}
.read-more-special:hover {
  background: #fff;
}
/* Facilities Section */
.facilities-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.facilities-header {
  margin-bottom: 60px;
}
.facilities-header h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.facilities-header h3 {
  font-size: 42px;
  font-weight: 400;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}
.facility-item {
  text-align: center;
}
.facility-icon {
  width: 90px;
  height: 90px;
  background: #f4d03f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  transition: all 0.3s;
}
.facility-item:hover .facility-icon {
  transform: scale(1.1);
  background: #1a1a1a;
  color: #f4d03f;
}
.facility-item h5 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 400;
}
.facility-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
/* Reasons Section */
.reasons-section {
  background: #f8f8f8;
  padding: 100px 40px;
}
.reasons-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reasons-image {
  position: relative;
}
.reasons-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.discover-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  padding: 35px;
  max-width: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.discover-badge h5 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 400;
}
.discover-badge p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.reasons-text h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.reasons-text h3 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.3;
}
.discover-more-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 14px 35px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
}
.discover-more-btn:hover {
  background: #1a1a1a;
  color: #f4d03f;
}
/* Rooms Section */
.rooms-section {
  padding: 100px 40px;
  text-align: center;
}
.rooms-section h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.rooms-section h3 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
}
.rooms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}
.room-card {
  background: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.room-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.room-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.room-info {
  padding: 30px;
  text-align: left;
}
.room-rating {
  color: #f4d03f;
  margin-bottom: 12px;
  font-size: 14px;
}
.room-info h5 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 400;
}
.room-features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #777;
}
.room-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.price {
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 500;
}
.price span {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
/* Video Section */
.video-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&h=600&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}
.play-button {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  cursor: pointer;
  transition: all 0.3s;
}
.play-button:hover {
  background: #f4d03f;
  transform: scale(1.1);
}
.play-button i {
  color: #1a1a1a;
  font-size: 28px;
  margin-left: 5px;
}
.video-section p {
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-weight: 300;
}
.video-section h3 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.4;
}
/* Restaurant Section */
.restaurant-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.restaurant-text h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.restaurant-text h3 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.3;
}
.restaurant-text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 15px;
}
.restaurant-hours {
  margin-top: 35px;
  padding: 25px;
  background: #f8f8f8;
}
.restaurant-hours p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}
.restaurant-hours strong {
  color: #1a1a1a;
}
.restaurant-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.restaurant-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s;
}
.restaurant-images img:hover {
  transform: scale(1.05);
}
/* Testimonials Section */
.testimonials-section {
  background: #f8f8f8;
  padding: 100px 40px;
  text-align: center;
}
.testimonials-section h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.testimonials-section h3 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
}
.testimonial-card {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.testimonial-icon {
  width: 70px;
  height: 70px;
  background: #f4d03f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  font-size: 32px;
}
.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 2;
  margin-bottom: 25px;
  font-size: 16px;
}
.testimonial-rating {
  color: #f4d03f;
  margin-bottom: 20px;
  font-size: 16px;
}
.testimonial-author {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}
.testimonial-date {
  font-size: 13px;
  color: #999;
}
/* Map Section */
.map-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.map-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  letter-spacing: 3px;
}
.nearby-places h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.nearby-places h3 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 400;
}
.nearby-places > p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
  font-size: 15px;
}
.places-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.place-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #f8f8f8;
  transition: all 0.3s;
}
.place-item:hover {
  background: #f4d03f;
  transform: translateX(5px);
}
.place-icon {
  font-size: 24px;
  color: #1a1a1a;
}
.place-info p:first-child {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
}
.place-info p:last-child {
  font-size: 13px;
  color: #777;
}
/* Blog Section */
.blog-section {
  background: #f8f8f8;
  padding: 100px 40px;
  text-align: center;
}
.blog-section h4 {
  font-size: 11px;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-section h3 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
}
.blog-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}
.blog-card {
  background: #fff;
  text-align: left;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover img {
  transform: scale(1.1);
}
.blog-content {
  padding: 35px;
}
.blog-content h5 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 1.4;
}
.blog-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: color 0.3s;
}
.blog-link:hover {
  color: #f4d03f;
}
/* Newsletter Section */
.newsletter-section {
  background: #1a1a1a;
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}
.newsletter-section h3 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 1.4;
}
.newsletter-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 18px 25px;
  border: none;
  font-size: 14px;
  font-family: inherit;
}
.subscribe-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 18px 45px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
}
.subscribe-btn:hover {
  background: #fff;
}
/* Footer */
footer {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 40px 30px;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 50px;
}
.footer-logo h4 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 2px;
}
.footer-logo p {
  font-size: 10px;
  letter-spacing: 3px;
  color: #777;
}
.footer-section h5 {
  font-size: 13px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 12px;
}
.footer-section a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #f4d03f;
}
.footer-section p {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #999;
  transition: all 0.3s;
}
.social-links a:hover {
  background: #f4d03f;
  color: #1a1a1a;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #252525;
  color: #777;
  font-size: 13px;
}
/* Responsive */
@media (max-width: 1024px) {
  .welcome-section,
  .reasons-content,
  .restaurant-section,
  .map-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .reasons-content {
    grid-template-columns: 1fr;
  }
  .reasons-content .reasons-image {
    order: 2;
  }
  .reasons-content .reasons-text {
    order: 1;
  }
  .specials-grid,
  .rooms-grid,
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 0 20px;
  }
  .top-bar {
    padding: 15px 0;
  }
  .header-content {
    padding: 0 20px;
  }
  .logo h1 {
    font-size: 28px;
  }
  .logo p {
    font-size: 10px;
  }
  .booking-form {
    flex-direction: column;
    position: static;
    transform: none;
    margin: -50px 20px 0;
    width: calc(100% - 40px);
    padding: 25px 20px;
  }
  .form-group {
    min-width: 100%;
  }
  .check-availability-btn {
    width: 100%;
    padding: 14px 20px;
  }
  .hero {
    min-height: 500px;
    padding: 40px 20px 60px;
  }
  .hero h2 {
    font-size: 42px;
  }
  .hero h3 {
    font-size: 32px;
  }
  .hero p.tagline,
  .hero p.subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .view-rooms-btn {
    padding: 14px 35px;
    font-size: 11px;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    display: none;
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    position: relative;
  }
  nav a {
    padding: 12px 20px;
    width: 100%;
    font-size: 12px;
  }
  .welcome-section,
  .reasons-content,
  .restaurant-section,
  .map-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 20px;
    gap: 40px;
  }
  .welcome-text h3,
  .reasons-text h3,
  .restaurant-text h3 {
    font-size: 32px;
  }
  .welcome-text h4,
  .reasons-text h4,
  .restaurant-text h4,
  .facilities-header h4,
  .specials-section h4,
  .rooms-section h4,
  .blog-section h4,
  .testimonials-section h4,
  .nearby-places h4 {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .welcome-images {
    grid-template-columns: 1fr;
  }
  .welcome-images img {
    height: 250px;
  }
  .specials-section,
  .facilities-section,
  .rooms-section,
  .blog-section,
  .testimonials-section {
    padding: 60px 20px;
  }
  .specials-section h3,
  .facilities-header h3,
  .rooms-section h3,
  .blog-section h3,
  .testimonials-section h3,
  .nearby-places h3 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .specials-grid,
  .rooms-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .special-card {
    height: 380px;
  }
  .special-title {
    font-size: 26px;
  }
  .facilities-section {
    padding: 60px 20px;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .facility-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .reasons-section {
    padding: 60px 20px;
  }
  .reasons-image img {
    height: 400px;
  }
  .discover-badge {
    position: static;
    margin-top: 20px;
    padding: 25px;
    max-width: 100%;
  }
  .room-card img {
    height: 240px;
  }
  .room-info {
    padding: 20px;
  }
  .room-info h5 {
    font-size: 20px;
  }
  .price {
    font-size: 24px;
  }
  .video-section {
    min-height: 450px;
    padding: 40px 20px;
  }
  .video-section h3 {
    font-size: 32px;
  }
  .play-button {
    width: 70px;
    height: 70px;
  }
  .play-button i {
    font-size: 22px;
  }
  .restaurant-section {
    padding: 60px 20px;
  }
  .restaurant-images {
    grid-template-columns: 1fr;
  }
  .restaurant-images img {
    height: 200px;
  }
  .restaurant-hours {
    padding: 20px;
  }
  .testimonial-card {
    padding: 35px 25px;
  }
  .testimonial-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
  }
  .map-section {
    padding: 60px 20px;
  }
  .map-placeholder {
    height: 350px;
    font-size: 18px;
  }
  .places-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .place-item {
    padding: 15px;
  }
  .blog-card img {
    height: 220px;
  }
  .blog-content {
    padding: 25px;
  }
  .blog-content h5 {
    font-size: 20px;
  }
  .newsletter-section {
    padding: 60px 20px;
  }
  .newsletter-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  .newsletter-form input {
    min-width: 100%;
    padding: 15px 20px;
  }
  .subscribe-btn {
    width: 100%;
    padding: 15px 20px;
  }
  footer {
    padding: 60px 20px 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-logo h4 {
    font-size: 24px;
  }
  .footer-section h5 {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 12px;
    padding-top: 20px;
  }
  .read-more-btn,
  .discover-more-btn {
    width: 100%;
    padding: 14px 20px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 450px;
  }
  .hero h2 {
    font-size: 36px;
  }
  .hero h3 {
    font-size: 26px;
  }
  .logo h1 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .welcome-text h3,
  .reasons-text h3,
  .restaurant-text h3,
  .specials-section h3,
  .facilities-header h3,
  .rooms-section h3,
  .blog-section h3,
  .testimonials-section h3,
  .nearby-places h3,
  .newsletter-section h3,
  .video-section h3 {
    font-size: 28px;
  }
  .special-card {
    height: 320px;
  }
  .special-title {
    font-size: 22px;
  }
  .testimonial-card {
    padding: 25px 20px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .map-placeholder {
    height: 300px;
    font-size: 16px;
  }
}
/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #1a1a1a;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: -90px;
}
/* Gallery Page Section */
.gallery-page-section {
  background: #fff;
  padding-bottom: 80px;
}
.gallery-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1920&h=400&fit=crop");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.gallery-hero h2 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 15px;
}
.breadcrumb {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 60px 20px 50px;
  flex-wrap: wrap;
}
.gallery-tab {
  background: transparent;
  border: 1px solid #ddd;
  padding: 12px 35px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.3s;
  color: #333;
}
.gallery-tab:hover,
.gallery-tab.active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.15);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: #f4d03f;
  font-size: 32px;
}
.load-more-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 16px 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  transition: all 0.3s;
}
.load-more-btn:hover {
  background: #1a1a1a;
  color: #f4d03f;
  transform: translateY(-2px);
}
.gallery-item.hidden {
  display: none;
}
/* About / The Hotel Page Section */
.about-page-section {
  background: #fff;
}
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1920&h=400&fit=crop");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.about-hero h2 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 15px;
}
.about-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}
.about-intro h3 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 35px;
  line-height: 1.3;
}
.about-intro p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 25px;
}
.about-amenities-section {
  background: #f8f8f8;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.amenities-left h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
}
.amenities-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.amenity-box {
  text-align: center;
}
.amenity-icon-box {
  width: 90px;
  height: 90px;
  background: #f4d03f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #1a1a1a;
}
.amenity-box h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.amenity-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.about-features-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.feature-card {
  position: relative;
}
.feature-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.feature-content {
  background: #fff;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}
.feature-content h6 {
  font-size: 10px;
  color: #999;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
}
.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.feature-card-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-card-right img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.feature-card-right .feature-content {
  position: static;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.discover-feature-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 14px 35px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s;
  width: fit-content;
}
.discover-feature-btn:hover {
  background: #1a1a1a;
  color: #f4d03f;
}
.about-experience-section {
  background: #f8f8f8;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.experience-card {
  background: #fff;
  text-align: center;
}
.experience-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.experience-tag {
  font-size: 10px;
  color: #999;
  letter-spacing: 2px;
  margin: 25px 0 15px;
  font-weight: 600;
}
.experience-card h4 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0 30px;
}
.experience-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 0 30px;
}
.experience-link {
  display: block;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  padding: 0 30px 30px;
}
.experience-link strong {
  color: #1a1a1a;
}
.about-testimonial {
  max-width: 900px;
  margin: 100px auto;
  padding: 60px 40px;
  text-align: center;
  background: #fff;
}
.testimonial-text-about {
  font-style: italic;
  color: #555;
  line-height: 2;
  margin-bottom: 25px;
  font-size: 16px;
}
/* Responsive for About Page */
@media (max-width: 1024px) {
  .about-amenities-section,
  .about-features-section,
  .about-experience-section {
    grid-template-columns: 1fr;
  }
  .amenities-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }
  .about-hero h2 {
    font-size: 36px;
  }
  .about-intro {
    padding: 60px 20px;
  }
  .about-intro h3 {
    font-size: 32px;
  }
  .about-amenities-section {
    padding: 60px 20px;
    gap: 40px;
  }
  .amenities-left h3 {
    font-size: 32px;
  }
  .amenities-grid-about {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-features-section {
    margin: 60px auto;
    padding: 0 20px;
    gap: 40px;
  }
  .feature-card img,
  .feature-card-right img {
    height: 300px;
  }
  .feature-content {
    position: static;
    margin-top: 20px;
  }
  .about-experience-section {
    padding: 60px 20px;
    gap: 40px;
  }
  .experience-card h4 {
    font-size: 24px;
  }
  .about-testimonial {
    margin: 60px auto;
    padding: 40px 20px;
  }
  .testimonial-text-about {
    font-size: 15px;
  }
  .gallery-hero {
    height: 300px;
  }
  .gallery-hero h2 {
    font-size: 36px;
  }
  .gallery-tabs {
    padding: 40px 20px 30px;
  }
  .gallery-tab {
    padding: 10px 20px;
    font-size: 11px;
  }
  .gallery-container {
    padding: 0 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-item {
    height: 250px;
  }
}
/* Blog Page Section */
.blog-page-section {
  background: #fff;
  padding-bottom: 80px;
}
.blog-page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1920&h=400&fit=crop");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.blog-page-hero h2 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 15px;
}
.blog-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 35px;
}
.blog-post-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.blog-post-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
.blog-post-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-post-card:hover .blog-post-image img {
  transform: scale(1.1);
}
.blog-post-content {
  padding: 30px;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.blog-category {
  background: #1a1a1a;
  color: #fff;
  padding: 5px 12px;
  font-weight: 600;
}
.blog-author {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 5px 12px;
  font-weight: 600;
}
.blog-date {
  color: #999;
  padding: 5px 0;
  font-weight: 600;
}
.blog-post-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
}
.blog-post-card:hover .blog-post-title {
  color: #f4d03f;
}
.blog-post-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-read-more {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-block;
}
.blog-read-more:hover {
  color: #f4d03f;
}
/* Blog Page Responsive */
@media (max-width: 768px) {
  .blog-page-hero {
    height: 300px;
  }
  .blog-page-hero h2 {
    font-size: 36px;
  }
  .blog-page-container {
    padding: 60px 20px;
  }
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-post-image {
    height: 240px;
  }
  .blog-post-content {
    padding: 25px 20px;
  }
  .blog-post-title {
    font-size: 20px;
  }
  .blog-post-meta {
    gap: 10px;
  }
}
/* Main Setion */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
.main-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}
.left-section {
  background: white;
  padding: 30px;
  border-radius: 8px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.room-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}
.rating {
  color: #ffd700;
  font-size: 14px;
}
.room-features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.thumbnail:hover {
  transform: scale(1.05);
}
.description {
  margin-bottom: 30px;
}
.description h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.description p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.amenities {
  margin-bottom: 30px;
}
.amenities h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}
.house-rules {
  margin-bottom: 30px;
}
.house-rules h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.rules-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}
.section-text {
  margin-bottom: 30px;
}
.section-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.section-text p {
  line-height: 1.6;
  color: #555;
  font-size: 14px;
}
.right-section {
  position: sticky;
  top: 20px;
  height: fit-content;
}
.booking-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.price-tag {
  background: #ffed4e;
  padding: 20px;
  text-align: center;
  border-radius: 8px 8px 0 0;
  margin: -25px -25px 20px -25px;
}
.price {
  font-size: 36px;
  font-weight: bold;
}
.price-period {
  font-size: 14px;
  color: #666;
}
.booking-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.input-group {
  margin-bottom: 15px;
}
.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #666;
}
.input-group input,
.input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.extra-services {
  margin: 20px 0;
}
.extra-services h4 {
  font-size: 16px;
  margin-bottom: 15px;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.book-btn {
  width: 100%;
  padding: 15px;
  background: #ffed4e;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #ffe100;
}
.best-rooms {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.best-rooms h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.room-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.room-item:last-child {
  border-bottom: none;
}
.room-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.room-info h4 {
  font-size: 14px;
  margin-bottom: 5px;
}
.room-info p {
  font-size: 12px;
  color: #666;
}
.weather-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.weather-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.weather-icon {
  font-size: 48px;
  text-align: center;
  margin: 20px 0;
}
.weather-temp {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.weather-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 12px;
  color: #666;
}
.help-card {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8ca8 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
.help-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.help-card p {
  margin-bottom: 20px;
  font-size: 14px;
}
.help-phone {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.help-email {
  font-size: 14px;
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  .right-section {
    position: relative;
    top: 0;
  }
}
/* Contact Page Section */
.contact-page-section {
  background: #fff;
}
.contact-page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1920&h=400&fit=crop");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.contact-page-hero h2 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 15px;
}
.contact-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}
.contact-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info-left h3 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 25px;
}
.contact-intro {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-detail-item {
  display: flex;
  gap: 20px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  font-size: 18px;
  color: #1a1a1a;
}
.contact-detail-text h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-detail-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.contact-form-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-map {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 5px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
.contact-form-wrapper h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}
.form-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.3s;
  background: #f9f9f9;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f4d03f;
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-submit-btn {
  background: #f4d03f;
  color: #1a1a1a;
  padding: 16px 45px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  transition: all 0.3s;
}
.contact-submit-btn:hover {
  background: #1a1a1a;
  color: #f4d03f;
  transform: translateY(-2px);
}
/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  @media (max-width: 768px) {
    .contact-page-hero {
      height: 300px;
    }
    .contact-page-hero h2 {
      font-size: 36px;
    }
    .contact-page-container {
      padding: 60px 20px;
    }
    .contact-info-left h3 {
      font-size: 32px;
    }
    .contact-form-wrapper h3 {
      font-size: 28px;
    }
    .contact-map {
      height: 280px;
    }
    .contact-detail-item {
      flex-direction: row;
      align-items: flex-start;
    }
    .contact-submit-btn {
      width: 100%;
    }
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
        url("./img/banner.jpeg");
      background-size: cover;
      background-position: center;
      padding: 120px 30px;
      text-align: center;
      color: white;
    }
    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: 300;
      letter-spacing: 1px;
    }
    .hero-breadcrumb {
      font-size: 13px;
      letter-spacing: 0.5px;
    }
    .hero-breadcrumb a {
      color: white;
      text-decoration: none;
    }
    /* Main Content */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      display: grid;
      /* grid-template-columns: 1fr 300px; */
      gap: 40px;
    }
    .post-image {
      width: 100%;
      height: 350px;
      background-color: #ddd;
      margin-bottom: 20px;
      border-radius: 2px;
      overflow: hidden;
    }
    .post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .post-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 12px;
    }
    .post-category {
      background-color: #000;
      color: #ffeb00;
      padding: 4px 10px;
      font-weight: bold;
      letter-spacing: 0.5px;
    }
    .post-date {
      color: #999;
      font-size: 12px;
    }
    .post-content {
      font-size: 14px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 30px;
    }
    .post-content p {
      margin-bottom: 15px;
    }
    .yellow-highlight {
      background-color: #ffeb00;
      color: #333;
      padding: 30px;
      margin: 30px 0;
      font-style: italic;
      font-size: 15px;
      line-height: 1.6;
      border-radius: 2px;
    }
    .photographer-credit {
      text-align: center;
      font-size: 11px;
      font-weight: bold;
      letter-spacing: 1px;
      color: #333;
      margin-top: 10px;
    }
    /* Sidebar */
    .sidebar {
      padding-top: 10px;
    }
    .search-box {
      margin-bottom: 30px;
    }
    .search-box input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      font-size: 13px;
    }
    .search-box button {
      position: relative;
      right: 35px;
      top: -40px;
      background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: #333;
    }
    .sidebar-section h3 {
      font-size: 16px;
      margin-bottom: 20px;
      font-weight: 600;
      border-bottom: 2px solid #333;
      padding-bottom: 10px;
    }
    .recent-posts {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .post-item {
      display: flex;
      gap: 12px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
    }
    .post-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .post-thumb {
      width: 80px;
      height: 80px;
      background-color: #ddd;
      flex-shrink: 0;
    }
    .post-item-content {
      flex: 1;
    }
    .post-item-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .post-item-title a {
      color: #333;
      text-decoration: none;
    }
    .post-item-date {
      font-size: 11px;
      color: #999;
    }
    /* Tags */
    .tags {
      margin-top: 30px;
    }
    .tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag {
      background-color: #f5f5f5;
      padding: 8px 12px;
      font-size: 12px;
      color: #666;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
    }
    .tag:hover {
      background-color: #eee;
    }
    /* Footer Section */
    .newsletter {
      background-color: #333;
      color: white;
      padding: 50px 30px;
      text-align: center;
      margin-top: 60px;
    }
    .newsletter h2 {
      font-size: 32px;
      margin-bottom: 30px;
      font-weight: 300;
    }
    .newsletter-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
    }
    .newsletter-form input {
      padding: 12px 20px;
      border: none;
      width: 200px;
      font-size: 13px;
    }
    .newsletter-form button {
      background-color: #ffeb00;
      color: #333;
      border: none;
      padding: 12px 25px;
      cursor: pointer;
      font-weight: bold;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .footer-content {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 30px;
      text-align: left;
    }
    .footer-col h4 {
      font-size: 12px;
      font-weight: bold;
      letter-spacing: 1px;
      margin-bottom: 15px;
      color: #ffeb00;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 10px;
      font-size: 13px;
    }
    .footer-col a {
      color: white;
      text-decoration: none;
    }
    .footer-col a:hover {
      text-decoration: underline;
    }
    .footer-bottom {
      border-top: 1px solid #555;
      padding-top: 20px;
      font-size: 12px;
      color: #999;
    }
    @media (max-width: 768px) {
      .container {
        grid-template-columns: 1fr;
      }
      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
      .hero h1 {
        font-size: 36px;
      }
      .nav-links {
        display: none;
      }
    }
  }
}
/* Main Content */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        /* grid-template-columns: 1fr 300px; */
        gap: 40px;
      }

      .post-image {
        width: 100%;
        height: 350px;
        background-color: #ddd;
        margin-bottom: 20px;
        border-radius: 2px;
        overflow: hidden;
      }

      .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .post-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 12px;
      }

      .post-category {
        background-color: #000;
        color: #ffeb00;
        padding: 4px 10px;
        font-weight: bold;
        letter-spacing: 0.5px;
      }

      .post-date {
        color: #999;
        font-size: 12px;
      }

      .post-content {
        font-size: 14px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
      }

      .post-content p {
        margin-bottom: 15px;
      }

      .yellow-highlight {
        background-color: #ffeb00;
        color: #333;
        padding: 30px;
        margin: 30px 0;
        font-style: italic;
        font-size: 15px;
        line-height: 1.6;
        border-radius: 2px;
      }

      .photographer-credit {
        text-align: center;
        font-size: 11px;
        font-weight: bold;
        letter-spacing: 1px;
        color: #333;
        margin-top: 10px;
      }

      /* Sidebar */
      .sidebar {
        padding-top: 10px;
      }

      .search-box {
        margin-bottom: 30px;
      }

      .search-box input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        font-size: 13px;
      }

      .search-box button {
        position: relative;
        right: 35px;
        top: -40px;
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: #333;
      }

      .sidebar-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
        font-weight: 600;
        border-bottom: 2px solid #333;
        padding-bottom: 10px;
      }

      .recent-posts {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .post-item {
        display: flex;
        gap: 12px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
      }

      .post-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      .post-thumb {
        width: 80px;
        height: 80px;
        background-color: #ddd;
        flex-shrink: 0;
      }

      .post-item-content {
        flex: 1;
      }

      .post-item-title {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.4;
      }

      .post-item-title a {
        color: #333;
        text-decoration: none;
      }

      .post-item-date {
        font-size: 11px;
        color: #999;
      }

      /* Tags */
      .tags {
        margin-top: 30px;
      }

      .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .tag {
        background-color: #f5f5f5;
        padding: 8px 12px;
        font-size: 12px;
        color: #666;
        border-radius: 2px;
        text-decoration: none;
        display: inline-block;
      }

      .tag:hover {
        background-color: #eee;
      }

      @media (max-width: 768px) {
        .container {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr 1fr;
        }

        .hero h1 {
          font-size: 36px;
        }

        .nav-links {
          display: none;
        }
      }