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

/* Ensure basic styling works */
html, body {
    height: 100%;
    width: 100%;
}

:root {
    /* Color Palette */
    --imperial-red: #8B0000;
    --bronze-gold: #D4AF37;
    --deep-black: #1a1a1a;
    --parchment: #f8f6f0;
    --stone-gray: #e8e6e1;
    --marble-white: #fafafa;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    
    /* Typography */
    --font-roman: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Inter', 'Arial', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--parchment);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-roman);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bronze-gold), var(--imperial-red));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--stone-gray) 0%, var(--parchment) 100%);
    overflow: hidden;
    /* Fallback for Live Server */
    background-color: #f8f6f0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--deep-black);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.maximus-portrait {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--bronze-gold);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    filter: contrast(1.1) brightness(1.05);
}

.maximus-portrait:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    filter: contrast(1.2) brightness(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--bronze-gold);
    border-bottom: 3px solid var(--bronze-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--imperial-red), #a00000);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--imperial-red);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #a00000, var(--imperial-red));
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--marble-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.maximus-statue {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border: 3px solid var(--bronze-gold);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    filter: contrast(1.05) brightness(1.02);
}

.maximus-statue:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    filter: contrast(1.1) brightness(1.05);
}

.about-story {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.roman-quote {
    font-family: var(--font-roman);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--imperial-red);
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--parchment), var(--stone-gray));
    border-left: 5px solid var(--bronze-gold);
    border-radius: var(--border-radius);
    position: relative;
    margin: 2rem 0;
}

.roman-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--bronze-gold);
    position: absolute;
    top: -10px;
    left: 20px;
}

/* Curriculum Section */
.curriculum {
    padding: var(--section-padding);
    background: var(--parchment);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.curriculum-card {
    background: var(--marble-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--stone-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bronze-gold), var(--imperial-red));
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--bronze-gold);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.curriculum-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-black);
}

.curriculum-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Offer Section */
.offer {
    padding: var(--section-padding);
    background: var(--marble-white);
}

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

.offer-list {
    margin-bottom: 3rem;
}

.offer-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--stone-gray);
}

.offer-item:last-child {
    border-bottom: none;
}

.checkmark {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--imperial-red);
}

.offer-item span:last-child {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.offer-quote {
    font-family: var(--font-roman);
    font-size: 1.3rem;
    text-align: center;
    color: var(--imperial-red);
    font-style: italic;
    padding: 2rem;
    background: linear-gradient(145deg, var(--parchment), var(--stone-gray));
    border-radius: var(--border-radius);
    border: 2px solid var(--bronze-gold);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--parchment);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--marble-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--stone-gray);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-roman);
    font-size: 4rem;
    color: var(--bronze-gold);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bronze-gold);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--imperial-red);
    font-style: normal;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--marble-white);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--parchment), var(--stone-gray));
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--bronze-gold);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bronze-gold), var(--imperial-red), var(--bronze-gold));
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-black);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--imperial-red);
    font-family: var(--font-roman);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.price-subtext {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-cta {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-black), #2c2c2c);
    color: white;
    text-align: center;
    position: relative;
}

.laurel-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--bronze-gold) 0px,
        var(--bronze-gold) 20px,
        transparent 20px,
        transparent 40px
    );
}

.final-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--stone-gray);
}

.final-cta-btn {
    font-size: 1.3rem;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--bronze-gold), #b8941f);
    border-color: var(--bronze-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.final-cta-btn:hover {
    background: linear-gradient(135deg, #b8941f, var(--bronze-gold));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--deep-black);
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-roman);
    font-size: 1.8rem;
    color: var(--bronze-gold);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--bronze-gold);
}

.footer-quote p {
    font-family: var(--font-roman);
    font-size: 1.1rem;
    color: var(--bronze-gold);
    margin-bottom: 0.5rem;
}

.footer-quote small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .maximus-portrait {
        width: 300px;
        height: 400px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .maximus-statue {
        width: 280px;
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .final-title {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .maximus-portrait {
        width: 250px;
        height: 320px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .roman-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .final-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 