<style>
    /* Reset & Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lato', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #fdf9f5;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: #9d3f5d;
    }

    h1 {
      font-size: 2.8rem;
    }

    h2 {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    h3 {
      font-size: 1.6rem;
      color: #9d3f5d;
    }

    p {
      margin-bottom: 1rem;
    }

    a {
      text-decoration: none;
      color: #9d3f5d;
    }

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

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: #9d3f5d;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn:hover {
      background: #7a2e48;
      transform: translateY(-2px);
    }

    /* Header & Navigation */
    header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: fixed;
      width: 100%;
      z-index: 1000;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #9d3f5d;
    }

    .logo span {
      color: #e77a99;
    }

    .nav-links {
      list-style: none;
      display: flex;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      color: #333;
      font-weight: 600;
      font-size: 1.1rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #9d3f5d;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                  url('Heroimage.png') no-repeat center center/cover;
      display: flex;
      align-items: center;
      text-align: center;
      color: #fff;
      padding-top: 80px;
    }


    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      color: #fff;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    /* Section General Styling */
    section {
      padding: 100px 0;
    }

    .section-title {
      position: relative;
      margin-bottom: 50px;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: #e77a99;
      margin: 15px auto 0;
    }

    /* Services */
    .services {
      background-color: #fff;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: #fdf9f5;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-icon {
      font-size: 3rem;
      color: #e77a99;
      margin-bottom: 20px;
    }

    /* About */
    .about {
      background-color: #fdf9f5;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-img {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

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

    /* Team */
    .team {
      background-color: #fff;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .team-member {
      text-align: center;
    }

    .team-member img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 5px solid #e77a99;
    }

    .team-member h3 {
      margin-bottom: 5px;
    }

    .team-member p {
      color: #777;
      font-style: italic;
    }

    /* Gallery */
    .gallery {
      background-color: #fdf9f5;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    .gallery-item {
      height: 200px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    /* Booking */
    .booking {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1580480055975-340df7417d38?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
      color: #fff;
      text-align: center;
    }

    .booking h2 {
      color: #fff;
    }

    .booking p {
      max-width: 700px;
      margin: 0 auto 30px;
    }

    /* Contact */
    .contact {
      background-color: #fff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }

    .contact-info h3 {
      margin-bottom: 20px;
    }

    .contact-info p {
      margin-bottom: 10px;
    }

    .contact-info i {
      color: #9d3f5d;
      margin-right: 10px;
      width: 20px;
    }

    .social-links {
      margin-top: 20px;
    }

    .social-links a {
      display: inline-block;
      margin-right: 15px;
      font-size: 1.5rem;
      color: #9d3f5d;
    }

    .social-links a:hover {
      color: #e77a99;
    }

    /* Footer */
    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 30px 0;
    }

    footer p {
      margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.3rem;
      }

      h2 {
        font-size: 2rem;
      }

      .about-content,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 100px;
      }
    }
  </style>
