/* =========================================================================
   ANUNCIATE (CASTING) - STYLES
   ========================================================================= */

/* ---- Container Override ---- */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ---- Breadcrumb ---- */
.breadcrumb-wrapper {
    background-color: #1a1a1a;
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    padding: 0;
    font-size: 14px;
    color: #fff;
    font-family: var(--font-primary);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.breadcrumb .current {
    color: var(--accent-gold);
}

/* ---- Related Header (Premium Escorts Title) ---- */
.related-header {
    max-width: 1320px;
    margin: 0 auto 20px;
    padding: 10px 0 18px;
    border-bottom: 2px solid #C4984B;
    text-align: left;
}

.related-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.2;
}

.related-header h3 .title-normal {
    font-weight: 700;
    color: #ffffff;
}

.related-header h3 .title-gold {
    font-weight: 900;
    color: #C4984B;
}

.related-header p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* ---- Casting Header ---- */
.casting-header {
    margin-bottom: 40px;
}

.casting-title {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.casting-subtitle {
    font-size: 20px;
    color: var(--accent-gold);
}

/* ---- Form Layout ---- */
.casting-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    width: 100%;
    margin: 0 auto 60px auto;
    align-items: flex-start;
}

.casting-form-image {
    display: flex;
}

.casting-form-image img {
    width: 100%;
    height: 810px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.casting-form-wrapper {
    background: #111;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
    width: 100%;
}

.casting-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

/* Grids for inputs */
.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-row-2-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 cols, but we'll only fill 2 */
    gap: 20px;
}

/* Custom form elements */
.casting-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #0a0a0a;
    border: 1px solid #333;
    color: var(--text-white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.casting-form .form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C4984B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.form-info-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: -10px;
}

/* File Uploads */
.file-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.file-upload-group {
    display: flex;
    align-items: center;
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
}

.file-upload-btn {
    background-color: #fff;
    color: #333;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-right: 1px solid #333;
    white-space: nowrap;
}

.file-upload-text {
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Captcha Mock */
.captcha-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.captcha-mock {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
}

.captcha-mock p {
    color: #cc0000;
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
}



/* Responsive */
@media (max-width: 768px) {
    .casting-page-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .casting-content-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .casting-header {
        padding: 0;
    }

    .casting-form-image img {
        height: 300px;
    }

    .form-row-3,
    .form-row-2-left,
    .file-upload-grid {
        grid-template-columns: 1fr;
    }

    .captcha-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .casting-form-wrapper {
        padding: 20px;
    }
}