/* EvilProv Website Styles - Dark Theatrical Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #0a0a0a;
    color: #e6e6e6;
    line-height: 1.6;
    background-image: url('../img/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a0000, #330000);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid #660000;
    box-shadow: 0 4px 20px rgba(102, 0, 0, 0.5);
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
}

.tagline {
    font-size: 1.5rem;
    color: #ff6666;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
}

/* Navigation */
.nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav a {
    color: #ff6666;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section h2 {
    font-size: 2.5rem;
    color: #ff3333;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section h3 {
    font-size: 1.8rem;
    color: #ff6666;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    color: #cccccc;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Cast Grid */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cast-member {
    background: rgba(20, 0, 0, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #330000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cast-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    border-color: #660000;
}

.cast-member img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 3px solid #660000;
    margin-bottom: 1rem;
}

.cast-member h4 {
    color: #ff6666;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

/* Group Photos */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: linear-gradient(135deg, #1a0000, #330000);
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid #660000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.event-date {
    font-size: 1.2rem;
    color: #ff3333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-venue {
    color: #ff6666;
    margin-bottom: 1rem;
}

.event-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #cc0000, #ff3333);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, #ff0000, #ff6666);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid #660000;
    margin-top: 4rem;
}

.footer p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tagline {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .cast-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.8s ease-out;
}
