/* CLASSIC MODELLING - Style Sheet */
/* Aesthetic: Vintage pin-up, burgundy/cream/gold, retro elegance */

:root {
    --bg-dark: #1a0f14;
    --bg-deep: #241519;
    --bg-accent: #2d1a1f;
    --accent-burgundy: #8B1538;
    --accent-gold: #D4AF37;
    --accent-cream: #FDF5E6;
    --accent-rose: #C9A0A0;
    --text-white: #ffffff;
    --text-cream: #FDF5E6;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            rgba(45, 26, 31, 0.95) 0%,
            rgba(36, 21, 25, 0.95) 50%,
            rgba(26, 15, 20, 0.98) 100%),
        url('../assets/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Split Hero with Cover Image */
.hero-split .hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    min-height: auto;
    padding: 60px 40px;
}

.hero-cover {
    flex: 0 0 auto;
    width: 100%;
    max-width: 450px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-cover img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(139, 21, 56, 0.25);
    border: 3px solid rgba(212, 175, 55, 0.4);
}

.hero-text {
    flex: 0 1 500px;
    text-align: left;
}

.hero-text .masthead {
    text-align: left;
    margin-bottom: 30px;
}

.hero-text .masthead h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-cream);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-text .cta-button {
    margin: 0;
}

.deadline-note {
    margin-top: 20px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

/* Force side-by-side on tablets and up */
@media (min-width: 601px) {
    .hero-split .hero-content {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .hero-cover {
        flex-shrink: 0;
    }
}

/* Tablet adjustments */
@media (max-width: 900px) and (min-width: 601px) {
    .hero-split .hero-content {
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-cover {
        max-width: 350px;
    }

    .hero-text .masthead h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-intro {
        font-size: 1rem;
    }
}

/* Mobile only - stack vertically */
@media (max-width: 600px) {
    .hero-split .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 80px 20px 50px;
    }

    .hero-cover {
        max-width: 300px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .masthead {
        text-align: center;
    }

    .hero-text .cta-button {
        margin: 0 auto;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Masthead */
.masthead {
    text-align: center;
    margin-bottom: 60px;
}

.masthead h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-gold);
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin: 30px auto;
    padding: 18px 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-cream);
    background: linear-gradient(135deg, var(--accent-burgundy), #a61c45);
    border: 2px solid var(--accent-gold);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.5);
    background: linear-gradient(135deg, #a61c45, var(--accent-burgundy));
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 1.3rem;
}

/* Features Bar */
.features-bar {
    background: var(--accent-burgundy);
    padding: 20px 0;
}

.features-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-cream);
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.about > .container > p {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-cream);
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.9;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(139, 21, 56, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.feature p {
    font-size: 1rem;
    color: var(--text-cream);
    opacity: 0.8;
}

/* Submit Section */
.submit-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-deep) 100%);
    text-align: center;
}

.submit-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.submit-section > .container > p {
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-bottom: 20px;
}

.submit-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.deadline-reminder {
    margin-top: 30px;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

footer .container {
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-cream);
    opacity: 0.7;
    letter-spacing: 2px;
}

.footer-links {
    margin: 30px 0;
}

.footer-links a {
    display: inline-block;
    margin: 0 20px;
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-cream);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .features-bar .container {
        gap: 20px;
    }

    .submit-features {
        flex-direction: column;
        gap: 10px;
    }

    .submit-features span:nth-child(2),
    .submit-features span:nth-child(4) {
        display: none;
    }
}

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

.masthead,
.cta-button {
    animation: fadeInUp 0.8s ease-out forwards;
}

.cta-button { animation-delay: 0.3s; }

/* hCaptcha centering */
.h-captcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
