/* --- GLOBAL RESET and FONT --- */
* {
    box-sizing: border-box; /* Crucial for preventing layout overflow */
    margin: 0;
    padding: 0;
}
.body {
  height: 100vh;
  margin: 0;

  background-color: #e5e5f7;
  opacity: 0.7;

  background-image:
    radial-gradient(circle at center center, #f74569, #e5e5f7),
    repeating-radial-gradient(
      circle at center center,
      #f74569,
      #f74569 11px,
      transparent 11px,
      transparent 22px
    );

  background-blend-mode: multiply;

  background-size: 200% 200%;
  animation: moveBG 12s linear infinite;
}

/* Animation */
@keyframes moveBG {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
body {
    font-family:'Poppins', sans-serif;
    overflow-x: hidden; /* Prevents horizontal scrollbar */
   /* padding-top: 40px; /* Space for the fixed offer bar 
}


/* --- OFFER BAR CONTAINER (Fixed and Highest Z-index) --- */
.offer-bar {
    position: fixed; /* Ensures it stays at the very top fixed */
    top: 0;
    z-index: 999; /* Very high z-index to sit above everything else */
    width: 100%;
    
    /* Styling */
    background-color: #FFC0CB; /* Pink background color */
    color: #333; 
    padding: 10px 30px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- COUNTDOWN TIMER STYLE --- */
.countdown-timer {
    font-weight: bold;
    color: #9C27B0; 
    margin: 0 20px;
}
.countdown-timer span {
    font-size: 1.2rem;
    padding: 0 2px;
}
/* --- BUTTON STYLE --- */
.offer-btn {
    text-decoration: none;
    background-color: #333; 
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s;
}
.offer-btn:hover {
    background-color: #555;
}

/* --- HEADER AND NAVIGATION (Fixed) --- */
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 50px;
    background:white;
    box-shadow:0 2px 6px rgba(0,0,0,.1);
    position:fixed;
    width:100%;
    top: 40px; /* Pushed down by the fixed offer bar (approx 40px tall) */
    z-index:10; /* Ensure it's above content but below the offer bar */
}
.logo {
    font-size:28px;
    font-weight:700;
    color:#e91e63;
}
.logo-image {
    height: 40px; /* Adjust height to match the font size of the text */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the image scales properly without distortion */
    /* Optional: Small adjustment to vertically align with the text baseline */
    margin-top: -2px; 
}
/* CORRECTED: Fixed the invalid margin syntax. This solves the clipped link issue! */
nav a {
    margin: 0 18px; /* 0 top/bottom, 18px left/right for clean spacing */
    text-decoration:none;
    color:#222;
    font-weight:500;
}
nav .login-btn {
    color:#e91e63;
    font-weight:600;
}

/* --- HERO SECTION (Background Slideshow) --- */
.hero {
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow: hidden; 
}
.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; 
    transition: opacity 1.5s ease-in-out; /* Fade transition */
}
.slide.active {
    opacity: 1;
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index: 2; /* Below text */
}
.hero-text {
    position:relative;
    color:white;
    text-align:center;
    max-width:900px;
    padding:20px;
    z-index: 3; /* Above overlay */
}
.hero-text h1 {
    font-size:48px;
    font-weight:700;
}
.hero-text span {
    color:#ff3b73;
}
.search-box {
    background:white;
    padding:20px;
    border-radius:8px;
    display:flex;
    gap:15px;
    margin-top:25px;
}
select, input {
    padding:12px;
    border-radius:6px;
    border:1px solid #ddd;
    font-size:15px;
    width:250px;
}

/* Update the search box layout for 4 items */
.search-box {
    /* Existing styles for background, padding, and flex display */
    display: flex;
    flex-wrap: wrap; /* Allows elements to wrap if space is tight */
    gap: 10px; 
    /* ... other styles ... */
}

/* Ensure the custom input and other form elements are styled similarly */
#customEventPlaceInput {
    padding:12px;
    border-radius:6px;
    border:1px solid #ddd;
    font-size:15px;
    flex-grow: 1; 
    /* Add transition for a smooth appearance/disappearance */
    transition: all 0.3s ease;
}

/* Ensure the other form elements maintain the same width logic */
select, input[type="date"] {
    padding:12px;
    border-radius:6px;
    border:1px solid #ddd;
    font-size:15px;
    flex-grow: 1; 
}

.find-btn {
    background:#ff3b73;
    color:white;
    border:none;
    padding:14px 28px;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

/* --- SERVICES SECTION --- */
.services {
    padding:80px 40px;
    text-align:center;
}
.services h2 {
    font-size:34px;
    margin-bottom:35px;
}
.service-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
}
.card {
    padding:30px;
    border:1px solid #eee;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    transition:.3s ease;
    background:white;
}
.card:hover {
    transform:translateY(-4px);
    box-shadow:0 6px 14px rgba(0,0,0,.12);
}
/* --- FOOTER BASE STYLES --- */
.main-footer {
    background-color: #333; /* Dark background */
    color: #f4f4f4; /* Light text */
    padding: 60px 50px 30px; /* Top, sides, bottom padding */
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to stack on smaller screens */
    justify-content: space-between;
    max-width: 1200px; /* Matches your main content width */
    margin: 0 auto;
}

.footer-col {
    width: 25%; /* Four columns, 25% each */
    min-width: 200px; /* Minimum size before stacking */
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

/* Optional: Underline effect for headers */
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 50px;
    background-color: #e91e63; /* Pink accent color */
}

/* --- LINKS AND TEXT --- */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a, .footer-info p {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #e91e63; /* Pink accent on hover */
}

/* --- LOGO & COPYRIGHT --- */
.footer-info .logo {
    color: #fff; /* White logo text */
    font-size: 24px;
    margin-bottom: 15px;
    /* Reuse logo image alignment from header CSS */
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info .logo-image {
    height: 30px;
}

.copyright {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #888;
}

/* --- APP DOWNLOAD AND SOCIAL --- */
.app-badge {
    max-width: 140px; /* Size of the Play Store badge */
    height: auto;
    margin-top: 10px;
    display: block;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e91e63;
}


/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .footer-col {
        width: 50%; /* 2 columns on tablets */
    }
}

@media (max-width: 576px) {
    .footer-col {
        width: 100%; /* 1 column on phones */
    }
    .main-footer {
        padding: 40px 20px 20px;
    }
}
/* General Reset */
* { box-sizing: border-box; }

/* Example: Making the service grid responsive */
.service-grid {
  display: grid;
  /* Default to 4 columns on large screens */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* TABLET VIEW (approx < 768px) */
@media screen and (max-width: 768px) {
    .service-grid {
      /* Switch to 2 columns on tablets */
      grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
       font-size: 32px; /* Smaller font */
    }

    .search-box {
        flex-direction: column; /* Stack form inputs */
    }
    .search-box input, .search-box select, .search-box button {
        width: 100%; /* Full width inputs */
        margin-bottom: 10px;
    }
}

/* MOBILE VIEW (approx < 480px) */
@media screen and (max-width: 480px) {
    .service-grid {
      /* Switch to 1 column on mobile */
      grid-template-columns: 1fr;
    }

     header nav {
         /* Hide standard nav and use a hamburger menu instead (requires JS) */
         display: none;
     }
}
/* Style css of gallery [page]
/* General Styles */
body {
    background-color: #0f0f0f; /* Professional Dark Theme */
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

/* Horizontal Slider Animation */
.slider {
    overflow: hidden;
    height: 300px;
    background: #1a1a1a;
    display: flex;
}

.slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

.slide img {
    width: 230px;
    height: 280px;
    margin: 10px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(40%);
    transition: 0.5s;
}

.slide img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Grid Layout */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px;
}

.box img {
    width: 100%;
    border-bottom: 3px solid #d4af37; /* Gold accent */
}