/* RICHARD EHRLICH - PLAYWRIGHT SITE STYLES */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b7355;
}

/* === HOME PAGE - SPLIT HERO CONTAINER === */
.hero-container {
    display: flex;
    min-height: 100vh;
}

.hero-left-panel {
    flex: 1;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc8 100%);
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
}

.hero-left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #8b7355 0%, transparent 100%);
}

.hero-right-panel {
    flex: 1;
    background-color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

.hero-right-panel::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    border: 2px solid #e8dcc8;
    pointer-events: none;
}

.hero-right-panel img {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.hero-content {
    max-width: 500px;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(139, 115, 85, 0.4);
    pointer-events: none;
}

.hero-content h1 {
    color: #2c2c2c;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.hero-content .subtitle {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.3);
}

.hero-content .tagline {
    font-size: 1.4rem;
    font-style: italic;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.button-group .btn {
    padding: 1.2rem 2rem;
    background-color: #2c2c2c;
    color: #fefefe;
    border: 2px solid #2c2c2c;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button-group .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button-group .btn:hover::before {
    width: 300px;
    height: 300px;
}

.button-group .btn:hover {
    background-color: #8b7355;
    border-color: #8b7355;
    color: #fefefe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.4);
}

/* === CONTENT SECTIONS === */
.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.content-section:last-of-type {
    border-bottom: none;
}

/* === OLD HEADER/NAV (for other pages) === */
header {
    background-color: #1a1a1a;
    color: #fefefe;
    padding: 3rem 0 2rem;
    text-align: center;
}

header h1 {
    color: #fefefe;
    margin-bottom: 0.5rem;
}

header .subtitle {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 0.08em;
}

/* === NAVIGATION === */
nav {
    background-color: #2c2c2c;
    padding: 0;
}

nav .container {
    display: flex;
    justify-content: center;
    gap: 0;
}

nav a {
    color: #fefefe;
    padding: 1rem 2rem;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-right: 1px solid #444;
}

nav a:last-child {
    border-right: none;
}

nav a:hover,
nav a.active {
    background-color: #8b7355;
    color: #fefefe;
}

/* === MAIN CONTENT === */
main {
    padding: 0;
}

.section-block {
    background-color: #f9f9f9;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b7355;
}

.section-block h2 {
    margin-top: 0;
}

.section-block p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c2c2c;
    color: #fefefe;
    border: 2px solid #2c2c2c;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: #2c2c2c;
}

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border-color: #8b7355;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #fefefe;
}

.btn-external {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #fefefe;
    border: 2px solid #8b7355;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-external:hover {
    background-color: #2c2c2c;
    border-color: #2c2c2c;
    color: #fefefe;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.overview {
    padding: 2rem 0;
}

.section-block {
    background-color: #f9f9f9;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b7355;
}

.section-block h2 {
    margin-top: 0;
}

.section-block p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c2c2c;
    color: #fefefe;
    border: 2px solid #2c2c2c;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: #2c2c2c;
}

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border-color: #8b7355;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #fefefe;
}

.btn-external {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #fefefe;
    border: 2px solid #8b7355;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-external:hover {
    background-color: #2c2c2c;
    border-color: #2c2c2c;
    color: #fefefe;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-return {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background-color: #8b7355;
    color: #fefefe;
}

/* === THEATRE PAGE === */
.show-list {
    margin-top: 2rem;
}

.show-item {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b7355;
}

.show-item h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.show-item .show-type {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.show-item p {
    color: #555;
    margin-bottom: 1rem;
}

/* === SHOW DETAIL PAGE === */
.show-header {
    background-color: #f5f5f5;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 3px solid #8b7355;
}

.show-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.show-header .logline {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    max-width: 800px;
}

.production-details {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
}

.production-details h3 {
    margin-top: 0;
}

.production-details ul {
    list-style: none;
    padding-left: 0;
}

.production-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.production-details li:last-child {
    border-bottom: none;
}

.downloads {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #2c2c2c;
    color: #fefefe;
}

.downloads h3 {
    color: #fefefe;
    margin-top: 0;
}

.downloads a {
    color: #fefefe;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #444;
    font-size: 1.1rem;
}

.downloads a:last-child {
    border-bottom: none;
}

.downloads a:hover {
    color: #8b7355;
}

/* === ABOUT PAGE === */
.bio {
    max-width: 700px;
    margin: 2rem auto;
}

.bio p {
    margin-bottom: 1.5rem;
}

.works-list {
    margin-top: 2rem;
}

.works-list h3 {
    margin-top: 2rem;
}

.works-list ul {
    list-style: none;
    padding-left: 0;
}

.works-list li {
    padding: 0.5rem 0;
}

/* === BOOKS PAGE === */
.books-overview {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto 3rem;
}

.external-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #8b7355;
    color: #fefefe;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.external-link:hover {
    background-color: #2c2c2c;
    color: #fefefe;
}

/* === CONTACT PAGE === */
.contact-info {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #f9f9f9;
    padding: 2.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: #8b7355;
    font-weight: 600;
}

/* === FOOTER === */
footer {
    background-color: #1a1a1a;
    color: #fefefe;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-left-panel,
    .hero-right-panel {
        padding: 2rem 1.5rem;
    }
    
    .button-group {
        grid-template-columns: 1fr;
    }
    
    nav .container {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        border-right: none;
        border-bottom: 1px solid #444;
    }

    nav a:last-child {
        border-bottom: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-block,
    .show-item {
        padding: 1.5rem;
    }
}
