/* styles.css */

/* Custom animations for high-energy feel */
@keyframes pulse-red {
    0%, 100% { background-color: #dc2626; }
    50% { background-color: #b91c1c; }
}

.hero-button {
    animation: pulse-red 2s infinite;
}

/* Neon glow effects */
.neon-button {
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    transition: box-shadow 0.3s ease;
}

.neon-button:hover {
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 45px #ff0000;
}

.neon-card {
    box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000;
    transition: box-shadow 0.3s ease;
}

.neon-card:hover {
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    transform: translateY(-2px);
}

/* Additional responsive tweaks if needed */

/* Modern Pricing Table Styles */
.pricing-section {
    padding: 3rem 1rem;
    background: #18181b;
    text-align: center;
}
.pricing-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.pricing-card {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: #fff;
    padding: 2.5rem 2rem;
    width: 320px;
    max-width: 90vw;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px 0 rgba(255, 0, 0, 0.25);
    border: 2px solid #dc2626;
}
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #dc2626;
    letter-spacing: 1px;
}
.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #dc2626;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.pricing-card ul li {
    margin: 0.75rem 0;
    font-size: 1.1rem;
    color: #e5e7eb;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}
.pricing-card ul li:last-child {
    border-bottom: none;
}
.btn {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    margin-top: 1rem;
}
.btn:hover {
    background: #b91c1c;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
    transform: scale(1.05);
}
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Slideshow Styles - Auto-play Only */
.slideshow-container {
    position: relative;
    background: black;
    width: 100%;
    height: 100vh; /* Full viewport height */
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container while maintaining aspect ratio */
    object-position: center; /* Centers the image */
    display: block;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Specific image positioning adjustments */
img[src*="tsi7.jpeg"] {
    object-position: center 70%; /* Bring tsi7 down to focus on lower part */
}

img[src*="tsi1.jpeg"] {
    object-position: center 30%; /* Bring tsi1 up to focus on upper part */
}

img[src*="tsi4.jpeg"] {
    object-position: center 35%; /* Bring tsi4 up to focus on upper part */
}

img[src*="IMG_1776.jpeg"] {
    object-position: center 45%; /* Slight adjustment for IMG_1776 to center people */
}

.slide.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.slide.hidden {
    display: none;
    opacity: 0;
}

.slide.hidden.fade {
    animation: fade 1s ease-in-out;
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        height: 60vh; /* Shorter on mobile for better UX */
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 50vh; /* Even shorter on very small screens */
    }
}
