@import url("https://fonts.cdnfonts.com/css/rouge-script");

/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Tinos', serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
    .hidden {
    display: none !important;
    }

  
  /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    z-index: 1;
  }
  
  /* Larger logo */
  .hero-logo {
    width: 300px;
    margin-bottom: 1rem;
  }
  
  /* Subtitle */
  .hero-subtitle {
    font-family: 'Rouge Script', sans-serif !important;
    font-size: 2rem;
    font-weight: 300;
  }
  
  /* Navigation links in hero */
  .hero-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  .hero-links li a {
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  .hero-links li a:hover {
    color: #ff4081;
  }
  
  /* Social media icons */
  .hero-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  /* Generic Section Styling */
  .section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
  }
  
  /* Services & Pricing */
  .services-section {
    text-align: center;
  }
  .services-section h2 {
    margin-bottom: 2rem;
  }
  .price-list-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .price-list-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Policies Section */
  .policies-section {
    text-align: center;
  }
  .policies-section h2 {
    margin-bottom: 2rem;
  }
  .policies-image-container {
    display: flex;
    justify-content: center;
  }
  .policies-image {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Portfolio Section */
  .portfolio-section {
  }
  .portfolio-section h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  .portfolio-item {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
  }
  .portfolio-item img,
  .portfolio-item video {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
  }
  .portfolio-item img:hover {
    transform: scale(1.05);
  }

  /* Reviews Section */
  .reviews-section {
    text-align: center;
  }
  .reviews-section h2 {
    margin-bottom: 2rem;
  }
  .reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .review-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .review-item p {
    font-family: 'Tinos', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
  }
  
  /* Booking & Contact Section */
  .booking-section {
    text-align: center;
  }
  .booking-section h2 {
    margin-bottom: 2rem;
  }
  #booking-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
  .form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    background-color: #ff4081;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .btn:hover {
    background-color: #e73370;
  }
  #form-response {
    margin-top: 1rem;
    text-align: center;
  }
    /* simple spinner */
    .spinner {
      display: inline-block;
      width: 1rem;
      height: 1rem;
      border: 2px solid rgba(255,255,255,0.6);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
      margin-left: 0.5rem;
      vertical-align: middle;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    /* modal backdrop */
    .modal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
    }
    /* hide by default */
    .modal.hidden {
      display: none;
    }
    /* modal box */
    .modal-content {
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      max-width: 90%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .modal-content p {
      margin-bottom: 1rem;
    }

  
  /* Contact Section */
  .contact-section {
    text-align: center;
  }
  .contact-section h2 {
    margin-bottom: 1rem;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  /* Responsive Media Queries */
  @media (max-width: 768px) {
    .hero-section {
      height: auto;
      padding-top: 80px;
    }
  
    .hero-logo {
      width: 200px;
    }
  
    .hero-links {
      flex-direction: column;
      gap: 1rem;
    }
  }