/* SEEKCRA Index Page Styles */

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}

/* Navbar Styles */
.navbar {
    background: #1a2956;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar-logo img {
    height: 48px;
    vertical-align: middle;
}
.navbar-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 6px 12px;
    border-radius: 4px;
}
.navbar-links li a:hover,
.navbar-links li a.active {
    background: #2e4175;
    color: #ffd700;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    min-height: 330px;
    max-height: 450px;
    overflow: hidden;
    background: #dbe9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    filter: brightness(0.8);
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 12px rgba(40,40,65,0.45);
    pointer-events: none;
}
.banner-overlay h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#1a2956,#6d97db 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-btn,
.banner-btn-secondary {
    background: #ffd700;
    color: #1a2956;
    border: none;
    padding: 12px 32px;
    margin: 8px;
    font-size: 1.08rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    pointer-events: auto;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.banner-btn-secondary {
    background: #fff;
    color: #1a2956;
    border: 2px solid #ffd700;
}

/* Section Titles */
h2 {
    margin-top: 60px;
    margin-bottom: 26px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1a2956;
    letter-spacing: 0.5px;
}

/* Auditions Section */
.auditions {
    padding: 16px 0 0 0;
}
.audition-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 32px auto;
}
.audition-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
}
.audition-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 36px rgba(40,60,140,0.13);
}
.audition-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.audition-card-content {
    padding: 18px 16px 16px 16px;
    flex: 1;
}
.audition-card h3 {
    font-size: 1.25rem;
    font-weight: 650;
    color: #1a2956;
    margin: 0 0 12px 0;
}
.audition-card p {
    font-size: 0.97rem;
    margin: 0 0 10px 0;
    color: #444;
}
.audition-btn {
    background: #1a2956;
    color: #ffd700;
    padding: 8px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    margin-top: 10px;
}
.audition-btn:hover {
    background: #ffd700;
    color: #1a2956;
}

/* Directors Section */
.directors-cast {
    padding: 16px 0 0 0;
}
.director-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 18px 0 32px 0;
    justify-content: center;
}
.director-photo {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(20,40,60,0.10);
    background: #fff;
    border: 3px solid #ffd700;
    transition: transform 0.18s;
}
.director-photo:hover {
    transform: scale(1.08);
    border-color: #1a2956;
}

/* Selected Artists Section */
.selected-artists {
    padding: 16px 0 0 0;
}
.artist-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 18px 0 32px 0;
    justify-content: center;
}
.artist-photo {
    height: 95px;
    width: 95px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 4px 16px rgba(20,40,60,0.10);
    border: 2.5px solid #6d97db;
    transition: transform 0.16s;
}
.artist-photo:hover {
    transform: scale(1.07);
    border-color: #ffd700;
}

/* Serials Section */
.serials {
    padding: 16px 0 0 0;
}
.serial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 32px auto;
}
.serial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
}
.serial-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(40,60,140,0.11);
}
.serial-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.serial-card-content {
    padding: 16px 13px 16px 13px;
    flex: 1;
}
.serial-card h3 {
    font-size: 1.13rem;
    font-weight: 600;
    color: #1a2956;
    margin: 0 0 11px 0;
}
.serial-card p {
    font-size: 0.96rem;
    margin: 0 0 9px 0;
    color: #444;
}
.serial-btn {
    background: #6d97db;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    margin-top: 8px;
}
.serial-btn:hover {
    background: #ffd700;
    color: #1a2956;
}

/* Contact Us Section */
.contact-us {
    background: #f5f7fa;
    padding: 32px 0 48px 0;
    margin-top: 36px;
    border-top: 1px solid #e3e8ef;
}
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 28px 24px;
    border-radius: 9px;
    box-shadow: 0 4px 14px rgba(30,30,60,0.07);
}
.contact-form .form-group {
    margin-bottom: 18px;
}
.contact-form label {
    font-weight: 600;
    color: #1a2956;
    display: block;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 10px;
    border: 1.5px solid #ccd6ee;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8fbff;
    color: #222;
    margin-bottom: 3px;
    resize: vertical;
    box-sizing: border-box;
}
.contact-form textarea {
    min-height: 80px;
}
.contact-btn {
    background: #1a2956;
    color: #ffd700;
    font-weight: bold;
    border: none;
    padding: 12px 32px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 1.07rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.2s, color 0.2s;
    margin-top: 10px;
}
.contact-btn:hover {
    background: #ffd700;
    color: #1a2956;
}

/* Footer */
.footer {
    background: #1a2956;
    color: #fff;
    padding: 40px 0 16px 0;
    margin-top: 40px;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.09rem;
    font-weight: 600;
}
.footer-col p, .footer-col ul {
    font-size: 0.98rem;
    color: #e6e6e6;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-col img {
    vertical-align: middle;
    height: 28px;
    margin-right: 8px;
    margin-bottom: 3px;
}
.footer-copy {
    text-align: center;
    margin-top: 28px;
    font-size: 0.97rem;
    color: #e6e6e6;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .audition-list,
    .serial-list,
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 12px;
    }
    .navbar-logo img {
        height: 36px;
    }
    .navbar-links {
        gap: 14px;
        font-size: 0.97rem;
    }
    .banner-overlay h1 {
        font-size: 1.45rem;
    }
    .audition-list,
    .serial-list,
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .audition-card img,
    .serial-card img {
        height: 120px;
    }
    .director-photo, .artist-photo {
        height: 70px; width: 70px;
    }
    .contact-form {
        padding: 15px 8px;
    }
}