/* Modern 60's inspired styles */
:root {
    --primary-color: #FF4C3B;
    --secondary-color: #2A2A2A;
    --accent-color: #FFD700;
    --text-color: #333333;
    --light-bg: #F5F5F5;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C42 100%);
    min-height: 80vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.retro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 0px var(--accent-color);
}

.retro-subheading {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.signup-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.retro-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('../images/pattern.png');
    background-size: 200px;
}

/* Navigation styles */
.navbar {
    padding: 1rem 0;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Footer styles */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .retro-heading {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 60vh;
    }
} 