 /* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Header Styling */
.header {
  background-color: #1a1a1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #f8b195;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f8b195;
}

.cta-btn {
  margin-left: 2rem;
  padding: 0.6rem 1.2rem;
  background-color: #f8b195;
  color: #111;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #f67280;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  margin-left: 1rem;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background-color: #121212;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 10px 24px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/Screenshot\ 2025-07-02\ 211004.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.hero-buttons .btn {
  padding: 12px 28px;
  margin: 0 10px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  background-color: #e91e63;
  color: white;
}

.btn:hover {
  background-color: #c2185b;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #e91e63;
  color: #e91e63;
}

.btn-outline:hover {
  background-color: #e91e63;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
  }
}

/* About Us Section */
.about-us {
  padding: 60px 20px;
  background-color: #413f3f;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e5baff;
}

.about-text p {
  line-height: 1.6;
  font-size: 1.1rem;
  color: #cccccc;
}

.about-text .quote {
  font-style: italic;
  margin-top: 20px;
  color: #f0aaff;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

/* Services Section */
.services-section {
  padding: 60px 20px;
  background-color: #1b1b1b;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #e5baff;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #222;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: #2b2b2b;
}

.service-card i {
  font-size: 2.5rem;
  color: #f0aaff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #ffffff;
}

.service-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card i {
    font-size: 2rem;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background-color: #1b1b1b;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #e5baff;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #e5baff;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #222;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f0aaff;
}

.testimonial-author h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #bbbbbb;
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #1c1c1c;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #e5baff;
  text-align: center;
  margin-bottom: 50px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-form,
.contact-info {
  flex: 1;
  min-width: 300px;
}

/* Booking Form */
.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #2a2a2a;
  color: #ffffff;
  font-size: 1rem;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #bbbbbb;
}

.booking-form button {
  background-color: #f0aaff;
  color: #121212;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #e590ff;
}

/* Contact Info */
.contact-info h3 {
  color: #f0aaff;
  margin-bottom: 15px;
}

.contact-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Map */
.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #181818;
  color: #f0f0f0;
  padding: 60px 20px 30px;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #f0aaff;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: #e5baff;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column ul {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f0aaff;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #f0aaff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin-right: 15px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
