/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/library-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Gallery Images */
.gallery-img {
    height: 250px;
    object-fit: cover;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Contact Form */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Custom Button Styles */
.btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Card Title */
.card-title {
    color: #333;
    font-weight: 600;
}

/* Text Colors */
.text-muted {
    color: #6c757d !important;
}

/* Map Container */
.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .min-vh-75 {
        min-height: 50vh;
    }
    
    section {
        padding: 40px 0;
    }
    
    .card-img-top {
        height: 180px;
    }
} 