/* Custom Styles for Sea Journey Immigration */

:root {
    --bs-primary: #007bff;
    --bs-primary-rgb: 0, 123, 255;
    --secondary-color: #6c757d;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--bs-primary);
}

.footer-links a {
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--bs-primary);
}

/* Carousel */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Section Padding */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--bs-primary);
    margin: 10px auto 0;
}

/* Form Styles */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}
