body {
    font-family: 'Poppins', sans-serif;
}
.hero-gradient {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1), rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

/* --- Hero Slider Styles --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh; /* Adjust height as needed */
    overflow: hidden;
}
.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}
.slide picture, .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide::after { /* Image overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    text-shadow: #1f2937 100px;
    text-align: center;
    z-index: 10;
    width: 90%; 
}
.text-red-500{
   -webkit-text-stroke: #f3f4f6 2px;
}
.text-teal-500{
    -webkit-text-stroke: #f3f4f6 2px;
}
.text-violet-500{
    -webkit-text-stroke: #f3f4f6 2px;
}
.text-pink-500{
    -webkit-text-stroke: #f3f4f6 2px;
}
.text-blue-500{
    -webkit-text-stroke: #f3f4f6 2px;
}
.text-orange-500{
    -webkit-text-stroke: #f3f4f6 2px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: white;
}


/* Animation for elements revealed on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* AI Generator Result Styles */
#event-ideas-result h1 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    margin-bottom: 1rem;
}
#event-ideas-result h2 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    margin-top: 1.5rem; /* 24px */
    margin-bottom: 0.5rem; /* 8px */
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb; /* cool-gray-200 */
}
#event-ideas-result ul {
    list-style-type: disc;
    padding-left: 2rem; /* 32px */
    margin-top: 1rem;
}
#event-ideas-result li {
    margin-bottom: 0.5rem; /* 8px */
}

/* Chatbot styles */
#chatbot-window.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
}
.chat-message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}
.chat-message.user {
    align-items: flex-end;
}
.chat-message.bot {
    align-items: flex-start;
}
.chat-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1.25rem;
    word-wrap: break-word;
}
.chat-bubble.user {
    background-color: #6d28d9; /* violet-700 */
    color: white;
    border-bottom-right-radius: 0.25rem;
}
.chat-bubble.bot {
    background-color: #f3f4f6; /* gray-100 */
    color: #1f2937; /* gray-800 */
    border-bottom-left-radius: 0.25rem;
}

/* Special Features Toggle Styles */
#action-buttons {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
#special-features-menu:not(.active) #action-buttons {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* CHATBOT PART AND AI  PLANNER */
.typing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}
.typing-indicator span {
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #9ca3af; /* gray-400 */
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* =================================================== */
/* ===== Styles para sa Gallery Section ===== */
/* =================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover .gallery-image {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 58, 138, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

