* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #666666;
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --accent-color: #ffffff;
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --gray-light: #f8f8f8;
    --gray-medium: #e8e8e8;
    --gray-dark: #666666;
    --accent-soft: #5a5a5a;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', 'Futura', 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BUTTONS */
.btn-primary {
    padding: 12px 32px;
    background-color: #666666;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #555555;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-black);
    color: white;
}

.btn-full {
    width: 100%;
    padding: 14px;
}

.btn-small {
    padding: 8px 16px;
    background-color: #666666;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 8px;
}

.btn-small:hover {
    background-color: #a01830;
}

.btn-small.danger {
    background-color: #d32f2f;
}

.btn-small.danger:hover {
    background-color: #c62828;
}

/* NAVIGATION */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.logo img {
    height: 160px;
    object-fit: contain;
}

.logo div {
    display: none;
}

.logo h1 {
    display: none;
}

.logo p {
    display: none;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    margin-left: 60px;
    justify-content: flex-start;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

.app-navbar .nav-container {
    justify-content: space-between;
}

.user-info {
    font-size: 14px;
    font-weight: 500;
}

/* HERO SECTION */
.hero {
    min-height: auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    font-size: 16px;
    padding: 14px 40px;
}

.hero-buttons .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-red);
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-black);
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #666666;
    margin: 20px auto 0;
    border-radius: 0;
}

.subsection-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-black);
}

/* NEWS */
.news-section {
    background-color: var(--gray-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-weight: 700;
}

.news-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: #a01830;
}

/* ABOUT */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.about-text p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    margin-top: 15px;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray-dark);
    font-size: 15px;
}

.feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 18px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.05) 0%, rgba(26, 26, 26, 0.03) 100%);
    padding: 40px;
    border-radius: 0;
    border-left: 3px solid var(--primary-red);
}

.highlight-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-black);
}

.stat {
    margin-bottom: 30px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-dark);
    margin-top: 5px;
}

/* COMPANY */
.company-section {
    background-color: var(--gray-light);
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
}

.team-card h4 {
    font-size: 20px;
    font-weight: 700;
    padding: 25px 25px 10px;
    color: var(--primary-black);
}

.role {
    padding: 0 25px;
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
}

.bio {
    padding: 15px 25px 25px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.cast-section {
    margin-bottom: 60px;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.cast-member {
    text-align: center;
    transition: var(--transition);
}

.cast-image {
    height: 220px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cast-member:hover .cast-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.cast-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-black);
}

/* PRODUCTIONS */
.productions-section {
    background-color: white;
}

.production-intro {
    text-align: center;
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.production-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.production-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.production-poster {
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.production-poster::after {
    content: '🎭';
    font-size: 60px;
    opacity: 0.3;
}

.production-poster.summer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.production-poster.modern {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.production-poster.mystery {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.production-poster.film1 {
    background: linear-gradient(135deg, #6f86d6 0%, #48dbfb 100%);
}

.production-poster.film2 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.production-poster.film3 {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

.production-card h4 {
    padding: 25px 25px 10px;
    font-size: 20px;
    color: var(--primary-black);
    font-weight: 700;
}

.production-year {
    padding: 0 25px;
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
}

.production-description {
    padding: 15px 25px;
    font-size: 14px;
    color: var(--gray-dark);
    flex-grow: 1;
    line-height: 1.6;
}

.btn-watch {
    margin: 0 25px 25px;
}

/* AUDITIONS */
.auditions-section {
    background-color: var(--gray-light);
}

.audition-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.intro-subtitle {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.audition-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.detail-card.highlight {
    border-left: 4px solid var(--primary-red);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(196, 30, 58, 0.05) 100%);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.detail-card h3 {
    font-size: 20px;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
}

.reserve-info {
    background-color: #666666;
    color: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.reserve-info p {
    color: white;
    margin: 8px 0;
    font-size: 14px;
}

.reserve-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.reserve-info a:hover {
    text-decoration: underline;
}

.prep-list {
    list-style: none;
}

.prep-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
}

.prep-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* FOOTER */
.footer {
    background-color: var(--primary-black);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: white;
    font-weight: 700;
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #666666;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 13px;
}

/* AUTH/APP PAGES */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 20px;
}

.auth-card {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
}

.auth-card h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.auth-subtitle {
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-size: 15px;
}

.privacy-notice {
    background-color: #e8f5e9;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-black);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 500;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-dark);
    font-size: 14px;
}

.auth-switch a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.demo-info {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    margin-top: 25px;
    border-left: 4px solid #ffc107;
}

.demo-info p {
    font-size: 13px;
    margin: 4px 0;
    color: #856404;
}

.demo-info strong {
    font-weight: 700;
}

/* APP PAGES */
.app-page {
    display: none;
}

.app-page.active {
    display: block;
}

.dashboard-container {
    padding: 40px 0;
}

.dashboard-header {
    margin-bottom: 50px;
    text-align: center;
}

.dashboard-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.dashboard-header p {
    font-size: 16px;
    color: var(--gray-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
    font-size: 40px;
}

.stat-card .stat-data {
    flex: 1;
}

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.content-section {
    margin-bottom: 40px;
}

/* VIDEO MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 2001;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: white;
}

.play-button {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.video-info {
    padding: 30px;
}

/* ADMIN PANEL */
.admin-container {
    display: flex;
    min-height: calc(100vh - 70px);
}

.admin-sidebar {
    width: 250px;
    background-color: var(--gray-light);
    border-right: 1px solid var(--gray-medium);
    padding: 20px;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    padding: 12px 15px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    color: var(--gray-dark);
    transition: var(--transition);
    font-size: 14px;
}

.menu-item:hover {
    background-color: var(--gray-medium);
    color: var(--primary-black);
}

.menu-item.active {
    background-color: #666666;
    color: white;
}

.admin-content {
    flex: 1;
    overflow-y: auto;
}

.admin-tab {
    padding: 40px;
    display: none;
}

.admin-tab.active {
    display: block;
}

.admin-tab h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.admin-tab > p {
    margin-bottom: 30px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-stat .stat-icon {
    font-size: 32px;
}

.admin-stat .stat-info {
    flex: 1;
}

.admin-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.admin-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background-color: var(--gray-light);
}

.admin-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 14px;
}

.admin-table tbody tr:hover {
    background-color: var(--gray-light);
}

.status-active {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.activity-log {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--gray-light);
    border-radius: 6px;
}

.activity-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.activity-text p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-black);
    font-size: 14px;
}

.activity-text small {
    display: block;
    color: var(--gray-dark);
    margin-top: 4px;
    font-size: 12px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.file-upload {
    border: 2px dashed var(--gray-medium);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--gray-light);
}

.file-upload:hover {
    border-color: var(--primary-red);
    background-color: rgba(196, 30, 58, 0.05);
}

.file-upload input {
    display: none;
}

.file-upload p {
    color: var(--gray-dark);
    font-size: 14px;
}

/* COMMITMENT ITEMS */
.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    background: var(--primary-white);
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
    transition: var(--transition);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.item-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TYPOGRAPHY UTILITIES */
.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-black);
}

.section-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid #666666;
    color: var(--primary-black);
}

.subsection-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.body-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

.body-text-small {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
}

/* SPACING UTILITIES */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.margin-bottom-lg {
    margin-bottom: 80px;
}

.margin-bottom-md {
    margin-bottom: 40px;
}

.margin-bottom-sm {
    margin-bottom: 24px;
}

.content-wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* ANIMATIONS - Removed for smoother navigation */

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-container {
        height: 80px;
        padding: 0 15px;
    }

    .logo img {
        height: 100px;
    }

    .nav-menu {
        gap: 25px;
        margin-left: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .commitment-list {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-stats {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-black);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-left: 0;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        font-size: 15px;
        padding: 12px 24px;
    }

    .hero-content img {
        max-height: 250px !important;
        margin-bottom: -40px !important;
        width: auto;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .subsection-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-grid,
    .audition-details-grid,
    .productions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-grid {
        gap: 20px;
    }

    .news-card {
        padding: 20px;
    }

    .news-card h3 {
        font-size: 18px;
    }

    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--gray-medium);
        max-height: 200px;
        overflow-x: auto;
    }

    .admin-menu {
        flex-direction: row;
        gap: 5px;
    }

    .admin-content {
        max-height: calc(100vh - 270px);
    }

    .admin-tab {
        padding: 20px;
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .production-card {
        padding: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 12px;
    }

    .logo img {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        max-height: 0;
    }

    .nav-menu.active {
        max-height: 350px;
    }

    .nav-menu li {
        padding: 12px 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero {
        padding: 20px 12px;
        min-height: auto;
    }

    .hero-content {
        padding: 15px 12px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        font-size: 14px;
        padding: 11px 20px;
        width: 100%;
    }

    .hero-content img {
        max-height: 150px !important;
        margin-bottom: -30px !important;
        width: auto;
    }

    .logo h1 {
        display: none;
    }

    .logo p {
        display: none;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .subsection-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .auth-card {
        padding: 25px 15px;
    }

    .dashboard-header h1 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-tab {
        padding: 12px;
    }

    .admin-table th,
    .admin-table td {
        padding: 6px;
        font-size: 11px;
    }

    .news-card {
        padding: 15px;
    }

    .news-card h3 {
        font-size: 16px;
    }

    .news-card p {
        font-size: 13px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form {
        padding: 15px;
    }

    .contact-form h2 {
        font-size: 18px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
        padding: 10px 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 13px;
    }

    .team-card {
        padding: 15px;
    }

    .team-card h4 {
        font-size: 16px;
    }

    .team-card .role {
        font-size: 12px;
    }

    .team-card .bio {
        font-size: 13px;
    }

    .production-card {
        padding: 12px;
    }

    .production-card h4 {
        font-size: 15px;
    }

    .production-description {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 12px;
    }

    section {
        padding: 35px 0;
    }

    .container {
        padding: 0 12px;
    }
}

@media print {
    nav,
    .nav-buttons,
    .btn-primary,
    .btn-outline {
        display: none;
    }
}
