/* Louvre Museum Website - Custom Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    margin-top: 56px;
    background-color: #1a1a1a; /* Fallback if image not found */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

/* Main Content Spacing */
.main-content {
    padding-top: 76px;
}

/* Navbar Customization */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    transition: transform 0.3s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Collection Icons */
.collection-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stat Boxes */
.stat-box {
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: scale(1.05);
}

/* Contact Items */
.contact-item {
    padding: 1rem;
    border-left: 3px solid #0d6efd;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-icon {
    min-width: 50px;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #0d6efd !important;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ticket Form Cards */
.card-header.bg-primary {
    background-color: #0d6efd !important;
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Text Utilities */
.text-primary {
    color: #0d6efd !important;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
}

/* Alert Styling */
.alert {
    border-radius: 8px;
}

/* Badge Styling */
.badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

