/* General Styles */
body {
    padding-top: 56px; /* Height of navbar */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    margin-bottom: 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    margin-right: 10px;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Links */
a {
    text-decoration: none;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

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

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Contact Section */
.contact-info li {
    margin-bottom: 15px;
}

/* About Section Image */
.about-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 