/* Modern Homepage Styles */
.homepage-content {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Hero Section Modern Style */
.hero-section {
    background-attachment: fixed !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-section:hover {
    transform: translateY(-5px);
}

.hero-section .overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-bottom: 2rem;
}

/* Modern Button Styles */
.btn-warning {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 15px rgba(255, 183, 71, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 183, 71, 0.5);
    background: linear-gradient(45deg, #ffb347, #ffd700);
}

.btn-info, .btn-secondary {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-info {
    background: linear-gradient(45deg, #17a2b8, #20c997);
    box-shadow: 0 6px 12px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(23, 162, 184, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #495057);
    box-shadow: 0 6px 12px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.4);
}

/* About Section Modern Style */
.about-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-section h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-radius: 2px;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

/* Gallery Image Modern Style */
.gallery-image {
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.gallery-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Gallery Header Modern Style */
.gallery-header h2 {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #17a2b8, #20c997);
    border-radius: 2px;
}

/* Carousel Modern Enhancements */
.carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.carousel-item img {
    filter: brightness(0.95) contrast(1.1);
    transition: filter 0.3s ease;
}

.carousel-item.active img {
    filter: brightness(1) contrast(1.2);
}

.carousel-control-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.carousel-control-btn i {
    color: #2c3e50 !important;
    transition: color 0.3s ease;
}

.carousel-control-btn:hover i {
    color: #17a2b8 !important;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.2);
}

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

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .about-section {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .btn-warning {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
}

/* Modern loader div styling */
.loaderDiv {
    height: 4px;
    background: linear-gradient(90deg, transparent, #17a2b8, transparent);
    border-radius: 2px;
    margin: 0 2rem;
    opacity: 0;
    animation: loadingBar 2s ease-in-out infinite;
}

@keyframes loadingBar {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}
