/* Component Styles */

/* Header Styles */
.header {
    background: linear-gradient(45deg, #8b5a3c 0%, #c7956d 50%, #8b5a3c 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::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 100 100"><defs><pattern id="theater" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="3" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23theater)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 400;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 10px;
    font-style: italic;
}

.organization {
    font-size: 1.1em;
    color: #e0e0e0;
    font-weight: 300;
}

.organization-link {
    color: #e0e0e0;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 3px 6px;
    border-radius: 4px;
}

.organization-link:hover {
    background-color: rgba(199, 149, 109, 0.2);
    color: #fff;
    text-decoration: none;
}

/* Navigation */
.nav {
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #c7956d;
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: #e0e0e0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    margin: 0 25px;
}

.nav a {
    color: #c7956d;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    display: block;
}

.nav a:hover {
    background: #c7956d;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(199, 149, 109, 0.3);
}

.section-title {
    font-size: 2.5em;
    color: #c7956d;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c7956d 0%, #8b5a3c 100%);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-photo {
    text-align: center;
}

.photo-placeholder {
    width: 280px;
    background: linear-gradient(135deg, #c7956d 0%, #8b5a3c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1em;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.about-text {
    padding: 20px 0;
}

.about-title {
    font-size: 2.2em;
    color: #c7956d;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-description {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-credentials {
    margin-top: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.credential-icon {
    font-size: 1.5em;
    margin-right: 15px;
    width: 30px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #c7956d 0%, #8b5a3c 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-date {
    position: absolute;
    left: 10px;
    top: 0;
    background: #c7956d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(199, 149, 109, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #c7956d;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199, 149, 109, 0.2);
}

.timeline-content h3 {
    color: #c7956d;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(199, 149, 109, 0.3);
}

.contact-section h3 {
    color: #c7956d;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-section p {
    color: #e0e0e0;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.3em;
    margin-right: 12px;
    width: 25px;
}

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

.contact-item a:hover {
    color: #8b5a3c;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #c7956d;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 149, 109, 0.3);
}

.social-link:hover {
    background: rgba(199, 149, 109, 0.1);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2em;
    margin-right: 12px;
    width: 25px;
}

.footer-quote {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(199, 149, 109, 0.3);
}

.footer-bottom {
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-quote p {
    color: #8b5a3c;
    font-size: 1.2em;
    font-style: italic;
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.award-item {
    background: linear-gradient(135deg, rgba(199, 149, 109, 0.1) 0%, rgba(139, 90, 60, 0.1) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #c7956d;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(199, 149, 109, 0.2);
}

.award-title {
    color: #c7956d;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.award-description {
    color: #e0e0e0;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Plays Section */
.plays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.play-card {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(199, 149, 109, 0.2);
}

.play-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199, 149, 109, 0.3);
}

.play-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #8b5a3c 0%, #c7956d 50%, #8b5a3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.play-content {
    padding: 30px;
}

.play-title {
    color: #c7956d;
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 600;
}

.play-subtitle {
    color: #8b5a3c;
    font-size: 1em;
    margin-bottom: 15px;
    font-style: italic;
}

.play-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.05em;
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.8);
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.photo {
    width: 100%;
}

.footer-content {
    color: #c7956d;
    font-size: 1.1em;
}

.contact-title {
    color: #c7956d;
    margin-bottom: 40px;
}


.dragondelve-logo {
    width: 200px;
    filter: grayscale(100%) brightness(220%);
    transition: all 0.3s ease;
}

.dragondelve-logo:hover {
    filter: grayscale(0%);
}
