@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}


/* Video container styles */
.video-slide {
    position: relative;
    /*height: 100vh;*/
    overflow: hidden;
  }
  
  .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
  }
  
  /* Pause indicator */
  .video-paused {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    display: none;
    z-index: 10;
  }
  
  .video-slide.paused .video-paused {
    display: block;
  }
  
  /* Owl Carousel Autoplay Settings */
  .owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
  }
  
  .owl-carousel .owl-item {
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }

  .background-container {
    width: 100%;
    height: 300px;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .image-container {
    width: 100%;
    height: 300px;
    background-color: lightblue; /* Optional background color */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .responsive-img {
    max-width: 100%;
    height: 100%;
  }

  .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .location iframe {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    border: 0;
  }

  .countdown-s2 {
    font-family: 'Arial', sans-serif;
    display: inline-block;
    padding: 20px;
}

.countdown-row {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.3); /* Dark transparent background */
    border-radius: 12px; /* Smoother rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow */
    backdrop-filter: blur(8px); /* Stronger frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle white border */
    color: white; /* White text color */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.countdown-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.countdown-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-section {
        min-width: 75px;
        padding: 15px 10px;
    }
    
    .countdown-amount {
        font-size: 2.2rem;
    }
    
    .countdown-period {
        font-size: 0.9rem;
    }
}