/* Jobs/Auditions Page Styles */

html {
    scroll-behavior: smooth;
}

/* Theme Hero Section - Black Background */
.theme-hero {
    background: #000000;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
}

.hero-content-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 0 auto;
}

.theme-hero .hero-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.theme-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    background: transparent;
    border: none;
    color: #EFB11D;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.btn-hero-primary::after,
.btn-hero-secondary::after {
    content: "→";
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    color: white;
}

.btn-hero-primary:hover::after,
.btn-hero-secondary:hover::after {
    transform: translateX(5px);
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    background-color: #f9f9f9;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item::after {
    content: "→";
    margin: 0 0.75rem;
    color: #999;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #EFB11D;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

/* Jobs Info Section */
.jobs-info-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Info Content */
.info-content {
    padding-right: 2rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.info-image {
    margin-bottom: 2rem;
}

.info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: white;
    color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EFB11D;
}

/* Positions Overview Section */
.positions-overview {
    margin-bottom: 2rem;
}

.position-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.position-type {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.position-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.position-type i {
    font-size: 2rem;
    color: #EFB11D;
    margin-bottom: 1rem;
    display: block;
}

.position-type h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.position-type p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Teach Section */
.why-teach-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.why-teach-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-teach-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: normal;
}

.why-teach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-teach-item {
    background: #e8e6e1;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    position: relative;
}

.why-teach-item::before {
    content: attr(data-number);
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 2rem;
    font-weight: 300;
    color: #d4a574;
    opacity: 0.4;
    font-family: 'Playfair Display', serif;
}

.why-teach-item h3 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-top: 1rem;
}

.why-teach-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Vacancies Table Section */
.vacancies-table-section {
    padding: 4rem 0;
    background: white;
}

.vacancies-table-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.vacancies-table-section .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: normal;
}

.vacancies-table-wrapper {
    overflow-x: auto;
}

.vacancies-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.vacancies-table thead {
    background: #2a2a2a;
    color: white;
}

.vacancies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.vacancies-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vacancies-table tbody tr.alt-row {
    background: #f9f9f9;
}

.vacancies-table tbody tr:hover {
    background: #e8e8e8;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vacancies-table tbody tr:hover td {
    color: #1a1a1a;
}

.vacancies-table tbody tr:hover .position-name {
    color: #1a1a1a;
    font-weight: bold;
}

.vacancies-table td {
    padding: 1rem;
    font-size: 0.95rem;
    color: #333;
    transition: color 0.3s ease;
}

.vacancies-table .position-name {
    color: #666;
    font-weight: normal;
    transition: all 0.3s ease;
}

/* Requirements & Benefits Lists */
.requirements-section,
.benefits-section {
    margin-bottom: 2rem;
}

.requirements-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li,
.benefits-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.requirements-list i {
    color: #4CAF50;
    margin-top: 0.2rem;
}

.benefits-list i {
    color: #EFB11D;
    margin-top: 0.2rem;
}

/* Audition Process Section */
.audition-section {
    margin-top: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #EFB11D;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Right Column - Application Form */
.right-column {
    position: sticky;
    top: 100px;
}

.application-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Form Styles */
.application-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EFB11D;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #EFB11D;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d49d0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 177, 29, 0.3);
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.contact-text {
    color: #777;
    margin-bottom: 0.5rem;
}

.contact-phone {
    display: inline-block;
    color: #EFB11D;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #d49d0a;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-content {
        padding-right: 0;
    }
    
    .right-column {
        position: static;
    }
    
    .position-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .theme-hero {
        height: auto;
        min-height: 500px;
        padding: 100px 20px 60px;
    }

    .theme-hero .hero-title {
        font-size: 2rem;
    }

    .theme-hero .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .application-form-container {
        padding: 1.5rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    /* Horizontal scrolling for vacancies table on mobile */
    .vacancies-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .vacancies-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .vacancies-table th,
    .vacancies-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    .vacancies-table .position-name {
        white-space: normal;
        min-width: 150px;
    }
    
    /* Visual indicator for scrolling */
    .vacancies-table-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8));
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .theme-hero .hero-title {
        font-size: 1.8rem;
    }
}