/* Custom Styles for Filmkalakar Website */

/* --- General & Typography --- */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #002855; /* A dark blue for headings */
}

/* --- Top Header & Navigation --- */
.top-header {
    font-size: 0.9rem;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffc107 !important; /* A bright yellow on hover */
}

.nav-item .btn {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
    background-color: #002855;
    color: #fff;
    padding: 100px 0;
}

.hero-section h1 {
    color: #fff;
}

/* --- Why Choose Section --- */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card .fa-3x {
    color: #002855;
}

/* --- Artist Profiles --- */
.artist-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

.artist-card .card-title {
    margin-bottom: 5px;
}

.artist-card .card-text {
    margin-bottom: 0;
}

/* --- Forms --- */
.form-control:focus {
    border-color: #002855;
    box-shadow: 0 0 0 0.25rem rgba(0, 40, 85, 0.25);
}

/* --- Footer --- */
footer {
    background-color: #002855;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center;
        padding-bottom: 10px;
    }
    .nav-item .btn {
        margin-top: 10px;
    }
    .top-header {
        display: none; /* Hide top header on small screens to save space */
    }
}
/* --- Custom Button Styles for "Join as Artist" --- */
.btn-join-artist {
    /* Set a gradient background with a fallback color */
    background: linear-gradient(90deg, #ff6b6b 0%, #ffc107 100%);
    border: none;
    font-weight: bold;
    color: #fff; /* Ensure text color is white for readability */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

/* Hover effect */
.btn-join-artist:hover {
    /* Change the gradient direction or color on hover */
    background: linear-gradient(90deg, #ffc107 0%, #ff6b6b 100%);
    transform: translateY(-2px); /* Slightly lift the button */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure the button looks good on active/click state */
.btn-join-artist:active {
    transform: translateY(0);
}