/* Custom CSS for New Age Seers USA Charity Website */

:root {
    --primary-color: #FB923C;
    --secondary-color: #EA580C;
    --accent-color: #FDBA74;
    --success-color: #38A169;
    --warning-color: #D69E2E;
    --light-bg: #F8FAFC;
    --dark-bg: #1E293B;
    --text-primary: #EA580C;
    --btn-primary: #FB923C;
    --btn-primary-hover: #EA580C;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1194713/pexels-photo-1194713.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Retreat Info Styling */
.retreat-info {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.retreat-image-container {
    position: relative;
}

.retreat-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    z-index: -1;
}

/* Banners Carousel */
.banners-carousel {
    background: var(--light-bg);
    padding: 3rem 0;
}

.banner-slide {
    padding: 0 15px;
}

.banner-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.banner-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.banner-item p {
    color: #0F766E;
    margin-bottom: 1.5rem;
}

.banner-item .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.banner-item .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Banner Cards */
/* Removed banner cards section */

/* Video Section */
.video-slide img {
    height: 500px;
    object-fit: cover;
}

.video-overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.video-slide:hover .video-overlay {
    opacity: 1;
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-play:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.95);
}

.video-thumbnail {
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail img {
    height: 200px;
    object-fit: cover;
}

.video-overlay-small {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-overlay-small {
    opacity: 1;
}

/* Donation Section */
.donation-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/6591440/pexels-photo-6591440.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.donation-section .container {
    position: relative;
    z-index: 2;
}

.donation-card {
    max-width: 100%;
}

.impact-amount {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

.btn-check:checked + .btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .video-slide img {
        height: 300px;
    }

    .btn-play {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .impact-amount {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section spacing */
section {
    scroll-margin-top: 76px;
}

/* Custom button styles */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Shadow utilities */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Background patterns */
.bg-pattern {
    background-image: radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.1) 2px, transparent 0);
    background-size: 50px 50px;
}

.hide {
    display: none;
}


/*events sections*/


.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
}

.section-padding {
    padding: 80px 0;
}

.event-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-5px);
}

.speaker-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.event-date {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.zoom-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}
