/* ============================================
   PREMIER PRODUCTIONS REPLICA - STYLES
   ============================================ */

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

:root {
    --primary-dark: #1a0033;
    --primary-purple: #6b2d7f;
    --primary-blue: #0066ff;
    --accent-pink: #ff1493;
    --accent-red: #ff3333;
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-gray: #cccccc;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-blue);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo a {
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 2px;
    border: 2px dashed var(--primary-blue);
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-section {
    background: var(--bg-darker);
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-pink);
}

.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(107, 45, 127, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.event-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-info {
    padding: 2rem;
}

.event-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.event-info h3 a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-info h3 a:hover {
    color: var(--accent-pink);
}

.event-date {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-tickets {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-tickets:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.5);
}

/* ============================================
   PAST EVENTS SECTION
   ============================================ */

.past-events {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    background: var(--bg-darker);
    padding: 4rem 2rem;
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 4rem 2rem;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ============================================
   TALENT SECTION
   ============================================ */

.talent-section {
    background: var(--bg-darker);
    padding: 4rem 2rem;
}

.talent-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.talent-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-10px);
}

.talent-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-blue);
}

.talent-card h4 {
    font-size: 1.2rem;
    color: var(--accent-pink);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-pink) 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-email {
    font-weight: bold;
    margin: 1.5rem 0;
}

.contact-email a {
    color: var(--text-white);
    text-decoration: none;
}

.btn-message {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--text-white);
    cursor: pointer;
}

.btn-message:hover {
    background: var(--text-white);
    color: var(--primary-blue);
    transform: scale(1.05);
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */

.contact-info-section {
    background: var(--bg-darker);
    padding: 4rem 2rem;
}

.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(107, 45, 127, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.contact-info-box p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--accent-pink);
}

/* ============================================
   CONTACT IMAGE SECTION
   ============================================ */

.contact-image-section {
    background: var(--bg-dark);
    padding: 2rem;
    text-align: center;
}

.contact-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 400px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 4rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-pink);
}

.form-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--accent-pink);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-blue);
    color: var(--text-white);
    padding: 0.8rem;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-blue);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-pink);
}

.footer-section p {
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .talent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
