/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --deep-red: #8b0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #f5f5f5;
    --accent: #c9a961;
    --shadow: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Garamond', 'Georgia', serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #1a0000 100%);
    color: var(--light-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Theatrical Spotlights */
.spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: spotlight-move 20s ease-in-out infinite;
}

.spotlight-1 {
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.spotlight-2 {
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
}

.spotlight-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes spotlight-move {
    0%, 100% { opacity: 0.3; transform: translate(0, 0) scale(1); }
    50% { opacity: 0.5; transform: translate(50px, 50px) scale(1.1); }
}

/* Theatrical Curtains */
.curtain {
    position: fixed;
    top: 0;
    width: 0;
    height: 100vh;
    background: linear-gradient(90deg, var(--deep-red) 0%, #660000 100%);
    z-index: 1000;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.curtain-left {
    left: 0;
    border-right: 3px solid var(--gold);
}

.curtain-right {
    right: 0;
    border-left: 3px solid var(--gold);
}

body.loaded .curtain {
    width: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInContainer 1s ease-out 1.5s forwards;
}

@keyframes fadeInContainer {
    to { opacity: 1; }
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow);
    font-family: 'Didot', 'Garamond', serif;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 300;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    font-size: 2.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 0.1rem;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
    padding: 3rem 0;
}

.info-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 3rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    background: rgba(212, 175, 55, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.1rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    opacity: 0.9;
}

/* Founder Section */
.founder-section {
    text-align: center;
    padding: 5rem 2rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.founder-content h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 300;
}

.founder-name {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
}

.founder-bio {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
    opacity: 0.9;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 3rem;
    letter-spacing: 0.1rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.05rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-button svg {
    width: 24px;
    height: 24px;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--gold);
    opacity: 0.8;
}

.footer p {
    margin-bottom: 0.5rem;
    color: var(--accent);
    letter-spacing: 0.1rem;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-out 2.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 2.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease-out 2.9s forwards;
}

.fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 1s ease-out 3.2s forwards;
}

.fade-in-delay-5 {
    opacity: 0;
    animation: fadeIn 1s ease-out 3.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    
    .star-icon {
        width: 30px;
        height: 30px;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2rem;
    }
    
    .hero-text {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }
    
    .hero-text {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
}
