/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@300;400;600&family=Dancing+Script:wght@400;700&family=Poppins:wght@300;400;600;700&family=Great+Vibes&family=Allura&family=Montserrat:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    font-family: "Great Vibes", "Dancing Script", cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #d4af37;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
  }
  
  @keyframes shimmer {
    0%, 100% { 
      background-position: 0% 50%; 
    }
    50% { 
      background-position: 100% 50%; 
    }
  }
  
  .logo span {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover {
    color: #d4af37;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .cta-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }
  
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Mobile Navigation Menu */
  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    padding: 2rem;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu.active .nav-link {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
  }

  .nav-menu.active .nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
  }

  .nav-menu.active .cta-btn {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
  }
   
  
 


  .hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
  }
  
  .hero-title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }
  
  .title-line:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .title-line:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
  }
  
  .scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-family: "Great Vibes", "Dancing Script", cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    background: linear-gradient(45deg, #2d2d2d, #d4af37, #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
  }
  
  .section-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    letter-spacing: 0.5px;
  }
  
  /* About Section */
  .about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
  }
  
  .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
  }
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-text {
    text-align: left;
  }

  .about-images {
    position: relative;
  }

  .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .about-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .about-image:hover img {
    transform: scale(1.1);
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .about-image:hover .image-overlay {
    transform: translateY(0);
  }

  .image-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
  }
  
  .about-text p {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #2d2d2d;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
  }
  
  .stat p {
    color: #666;
    font-weight: 500;
  }
  
  /* Events Section - Updated to use horizontal card layout */
  .events {
    padding: 6rem 0;
    background: white;
  }
  
  /* New grid layout for horizontal cards */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Enhanced card styling for better horizontal layout */
  .card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    transform: translateY(0);
  }
  
  .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }
  
  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .card:hover img {
    transform: scale(1.1);
  }
  
  .card .content {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f8f9fa);
  }
  
  .card .title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
  }
  
  .card .title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background: #d4af37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  
  .card:hover .title::after {
    width: 80px;
  }

  /* Wedding Card Options */
  .wedding-card {
    position: relative;
  }

  .card-options {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .option-btn {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
  }

  .package-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .package-btn:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }

  .custom-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  .custom-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  /* Responsive card options */
  @media (max-width: 640px) {
    .card-options {
      flex-direction: column;
      gap: 0.6rem;
    }

    .option-btn {
      width: 100%;
      padding: 0.7rem 1rem;
      font-size: 0.85rem;
    }
  }
  
  /* Gallery Section */
  .gallery {
    padding: 6rem 0;
    background: #f8f9fa;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
  
  .gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
    background: white;
  }
  
  .contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
  }
  
  .contact-info {
    text-align: center;
    max-width: 600px;
  }
  
  .contact-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }
  
  .contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .contact-item p {
    color: #666;
    margin: 0;
  }
  
  .contact-form {
    display: none;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
  }
  
  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }
  
  /* Footer */
  .footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
    margin-bottom: 1rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #d4af37;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    padding: 0.5rem 1rem;
    background: #555;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .social-link:hover {
    background: #d4af37;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
  }
  
  .developer-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
  }
  
  .developer-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .developer-info strong {
    color: #d4af37;
    font-weight: 600;
  }
  
  .developer-info a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .developer-info a:hover {
    color: #f4d03f;
    text-decoration: underline;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* Responsive Design */
  
  /* Large Tablets and Small Laptops */
  @media (max-width: 1024px) {
    .container {
      padding: 0 1.5rem;
    }
    
    .hero-title {
      font-size: 3.5rem;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
    
    .nav-container {
      padding: 0 1.5rem;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }

  /* Tablets */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .hero {
      padding: 1rem;
      min-height: 500px;
      background-attachment: scroll;
    }

    .hero-content {
      padding: 0 1rem;
    }

    .hero-title {
      font-size: 2.8rem;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .section-title {
      font-size: 2.2rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
    }

    .grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 0 1rem;
    }

    .card {
      max-width: 100%;
      min-width: 280px;
    }

    .card .content {
      padding: 1.5rem;
    }

    .contact-content {
      min-height: 50vh;
      padding: 0 1rem;
    }

    .stats {
      gap: 2rem;
      flex-direction: column;
      align-items: center;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    
    .footer-content {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .container {
      padding: 0 1rem;
    }

    .nav-container {
      padding: 0 1rem;
    }
  }

  /* Mobile Landscape */
  @media (max-width: 640px) {
    .hero {
      min-height: 450px;
      padding: 1rem 0.5rem;
    }

    .hero-content {
      padding: 0 0.5rem;
    }

    .hero-title {
      font-size: 2.4rem;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }
    
    .section-title {
      font-size: 2rem;
      letter-spacing: 1px;
    }
    
    .section-subtitle {
      font-size: 1rem;
    }
    
    .about {
      padding: 4rem 0;
    }
    
    .events, .gallery, .contact {
      padding: 4rem 0;
    }
    
    .stats {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .contact-details {
      gap: 1rem;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .about-text {
      text-align: center;
    }

    .about-text p {
      font-size: 1rem;
      letter-spacing: 0.3px;
      line-height: 1.6;
    }

    .image-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .about-image img {
      height: 150px;
    }

    .grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 0 0.5rem;
    }

    .card {
      min-width: auto;
      max-width: 100%;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Mobile Portrait */
  @media (max-width: 480px) {
    .logo h1 {
      font-size: 1.8rem;
      letter-spacing: 0.5px;
    }
    
    .logo span {
      font-size: 0.8rem;
    }
    
    .container {
      padding: 0 0.5rem;
    }
    
    .nav-container {
      padding: 0 0.5rem;
    }

    .hero {
      padding: 0.5rem;
      min-height: 400px;
    }

    .hero-content {
      padding: 0;
    }

    .hero-title {
      font-size: 1.8rem;
      line-height: 1.1;
      margin-bottom: 0.8rem;
    }

    .hero-subtitle {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      line-height: 1.4;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      max-width: 250px;
      padding: 12px 24px;
      font-size: 0.95rem;
    }
    
    .section-title {
      font-size: 1.6rem;
      letter-spacing: 0.5px;
    }
    
    .section-subtitle {
      font-size: 0.9rem;
    }
    
    .about, .events, .gallery, .contact {
      padding: 3rem 0;
    }

    .about-text p {
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .image-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .about-image img {
      height: 180px;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .gallery-item img {
      height: 220px;
    }

    .grid {
      padding: 0 0.5rem;
    }

    .card .content {
      padding: 1rem;
    }

    .card .title {
      font-size: 1.2rem;
    }

    .option-btn {
      padding: 0.6rem 1rem;
      font-size: 0.8rem;
      min-width: 100px;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .social-links {
      justify-content: center;
    }

    .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  }

  /* Extra Small Mobile */
  @media (max-width: 360px) {
    .hero {
      min-height: 350px;
    }

    .hero-title {
      font-size: 1.6rem;
      line-height: 1.1;
    }
    
    .hero-subtitle {
      font-size: 0.85rem;
      line-height: 1.3;
    }
    
    .section-title {
      font-size: 1.4rem;
    }
    
    .section-subtitle {
      font-size: 0.85rem;
    }
    
    .btn-primary,
    .btn-secondary {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
    
    .card .content {
      padding: 0.8rem;
    }

    .card .title {
      font-size: 1.1rem;
    }

    .option-btn {
      padding: 0.5rem 0.8rem;
      font-size: 0.75rem;
      min-width: 90px;
    }

    .about-text p {
      font-size: 0.85rem;
    }

    .gallery-item img {
      height: 200px;
    }

    .about-image img {
      height: 160px;
    }
    
    .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }

    .contact-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  }
  
  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Touch and Accessibility Improvements */
  @media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .cta-btn:hover,
    .card:hover {
      transform: none;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .cta-btn:active {
      transform: scale(0.98);
    }

    .card:active {
      transform: scale(0.98);
    }

    .nav-link:active {
      background: rgba(212, 175, 55, 0.1);
    }

    .option-btn:active {
      transform: scale(0.95);
    }
  }

  /* Mobile-specific touch improvements */
  @media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .cta-btn,
    .option-btn {
      min-height: 44px;
      min-width: 44px;
      touch-action: manipulation;
    }

    .nav-link {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hamburger {
      min-height: 44px;
      min-width: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card {
      touch-action: manipulation;
    }

    .gallery-item {
      touch-action: manipulation;
    }
  }

  /* High DPI Display Support */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
      background-attachment: scroll;
    }
  }

  /* Landscape Orientation */
  @media (orientation: landscape) and (max-height: 500px) {
    .hero {
      height: 100vh;
      min-height: 500px;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
  }
  
  /* Loading Animation for Images */
  img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  /* Scroll Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
  }

  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
  }

  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
  }

  .scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }

  .rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
    transition: all 0.8s ease;
  }

  .rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }
  .stagger-5 { transition-delay: 0.5s; }

  /* Enhanced Hero Animations */
  .hero-content {
    animation: heroSlideIn 1.2s ease-out;
  }

  @keyframes heroSlideIn {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Floating Animation for Cards */
  .card {
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  /* Pulse Animation for Buttons */
  .btn-primary, .btn-secondary, .cta-btn {
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before, .btn-secondary::before, .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .btn-primary:hover::before, .btn-secondary:hover::before, .cta-btn:hover::before {
    left: 100%;
  }

  /* Counter Animation */
  .stat h3 {
    transition: all 0.3s ease;
  }

  .stat.visible h3 {
    animation: countUp 2s ease-out;
  }

  @keyframes countUp {
    from { transform: scale(1.2); }
    to { transform: scale(1); }
  }

  /* Gallery Hover Effects */
  .gallery-item {
    transition: all 0.4s ease;
  }

  .gallery-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  /* Text Reveal Animation */
  .text-reveal {
    overflow: hidden;
  }

  .text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s ease;
  }

  .text-reveal.visible span {
    opacity: 1;
    transform: translateY(0);
  }

  /* Floating Animation for Cards */
  .floating {
    animation: floating 6s ease-in-out infinite;
  }

  @keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  /* Enhanced Navbar Animation */
  .navbar {
    transition: transform 0.3s ease;
  }

  /* Parallax Hero Effect */
  .hero {
    will-change: transform;
  }

  /* Enhanced Button Animations */
  .btn-primary, .btn-secondary, .cta-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Loading Animation for Page */
  .page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: fadeOutLoader 3s ease-in-out forwards;
  }

  .page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  @keyframes fadeOutLoader {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
  }

  .loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Scroll Progress Bar */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    z-index: 1001;
    transition: width 0.1s ease;
  }

  /* Enhanced Gallery Animations */
  .gallery-item img {
    transition: all 0.4s ease;
  }

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

  /* Contact Form Animations */
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }

  /* Footer Animation */
  .footer {
    background: linear-gradient(135deg, #333, #444);
  }

  .footer-section {
    transition: transform 0.3s ease;
  }

  .footer-section:hover {
    transform: translateY(-5px);
  }

  /* Wedding Menu Form Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
  }

  .modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
  }

  .modal-header {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-header h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
  }

  .close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .close:hover {
    transform: scale(1.2);
  }

  .custom-menu-form {
    padding: 2rem;
  }

  .form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
  }

  .form-section:last-of-type {
    border-bottom: none;
  }

  .form-section h3 {
    color: #d4af37;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
  }

  .menu-category {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
  }

  .menu-category h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .puja-veg-notice {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #4caf50;
    text-align: center;
  }

  .puja-veg-notice p {
    margin: 0;
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 500;
  }

  .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
  }

  .checkbox-group label {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
  }

  .checkbox-group label:hover {
    background: #f0f8ff;
    border-color: #d4af37;
    transform: translateY(-2px);
  }

  .checkbox-group input[type="checkbox"] {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
  }

  .checkbox-group input[type="checkbox"]:checked + * {
    color: #d4af37;
    font-weight: 600;
  }

  .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
  }

  .btn-cancel,
  .btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
  }

  .btn-cancel {
    background: #6c757d;
    color: white;
  }

  .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
  }

  .btn-submit {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  .btn-submit:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  /* Modal Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Responsive Modal */
  @media (max-width: 768px) {
    .modal {
      padding: 1rem;
    }

    .modal-content {
      width: 100%;
      margin: 0;
      max-height: 95vh;
      border-radius: 15px;
    }

    .modal-header {
      padding: 1.5rem;
      border-radius: 15px 15px 0 0;
    }

    .modal-header h2 {
      font-size: 1.5rem;
    }

    .custom-menu-form {
      padding: 1.5rem;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .checkbox-group {
      grid-template-columns: 1fr;
    }

    .form-actions {
      flex-direction: column;
      gap: 0.8rem;
    }

    .btn-cancel,
    .btn-submit {
      width: 100%;
      padding: 1rem;
      font-size: 1rem;
    }

    .menu-category {
      padding: 1rem;
    }

    .form-section {
      margin-bottom: 2rem;
    }
  }

  @media (max-width: 480px) {
    .modal {
      padding: 0.5rem;
    }

    .modal-content {
      width: 100%;
      margin: 0;
      max-height: 98vh;
      border-radius: 10px;
    }

    .modal-header {
      padding: 1rem;
      border-radius: 10px 10px 0 0;
    }

    .modal-header h2 {
      font-size: 1.2rem;
    }

    .close {
      font-size: 1.5rem;
    }

    .custom-menu-form {
      padding: 1rem;
    }

    .form-section h3 {
      font-size: 1.2rem;
    }

    .menu-category {
      padding: 0.8rem;
    }

    .menu-category h4 {
      font-size: 1rem;
    }

    .checkbox-group label {
      padding: 0.6rem;
      font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 0.8rem;
      font-size: 0.9rem;
    }

    .btn-cancel,
    .btn-submit {
      padding: 0.8rem;
      font-size: 0.9rem;
    }
  }

  