/* Register your custom fonts */
@font-face {
    font-family: 'AgencyFB';
    src: url('fonts/agencyfb_reg.ttf') format('truetype');
}

@font-face {
    font-family: 'AgencyFBBold';
    src: url('fonts/agencyfb_bold.ttf') format('truetype');
}

/* Base Layout */
body {
    font-family: 'AgencyFB', sans-serif;
    background: url('page background/main-background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    margin: 0;
    padding: 0;
}

/* Apply bold font to headers */
h1, h2, h3 {
    font-family: 'AgencyFBBold', sans-serif;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Navbar Links - Splash style */
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    border: 2px solid #ff7bc0;
    background: rgba(255, 123, 192, 0.2);
}

/* Logo and Link Fix */
#showtime-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-area a {
    display: block;
    border: none;
    text-decoration: none;
}

.logo-area a img {
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
}

/* Content Sections */
.content-section, .careers-section {
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.75); /* Darkened slightly from 0.6 */
    margin: 20px;
    border-radius: 15px;
    text-align: center;
}

/* Splash-style Liquid Glass Buttons */
.cta-button {
    padding: 10px 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: 'AgencyFBBold', sans-serif;
    border: 2px solid #ff7bc0;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff7bc0;
    color: black;
    box-shadow: 0 0 15px #ff7bc0;
    transform: scale(1.05);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Enhanced Footer Styling */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 40px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-top: 15px;
}

/* Job Cards */
.job-card {
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: left;
}

.job-card h3 {
    margin-top: 0;
    color: #ff7bc0;
}