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

:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #00ff00;
    --dark-bg: #121212;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #f8f9fa;
    --border-radius: 8px;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: linear-gradient(to bottom, #ffd89b 0%, #19547b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 200, 100, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 35% 40%, rgba(255, 180, 80, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 60% 30%, rgba(255, 220, 120, 0.35) 0%, transparent 28%),
        radial-gradient(circle at 80% 50%, rgba(255, 190, 90, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 25% 70%, rgba(255, 210, 110, 0.25) 0%, transparent 22%);
    pointer-events: none;
}

/* Setting sun in bottom right corner */
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 30%, #fdc830 60%, rgba(253, 200, 48, 0) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(255, 107, 53, 0.6),
        0 0 120px rgba(247, 147, 30, 0.4),
        0 0 160px rgba(253, 200, 48, 0.3);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content h1 i {
    color: #2e7d32;
    margin-right: 15px;
}

.quote-attribution {
    font-size: 1rem;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-weight: 300;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.message-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid rgba(255, 200, 100, 0.6);
}

.message-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.message-box p:last-child {
    margin-bottom: 0;
}

.message-box .movie-quote {
    font-style: italic;
    font-size: 1rem;
    opacity: 0.85;
    border-left: 3px solid #ff6b35;
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.message-box i {
    color: #ff6b35;
    margin-right: 10px;
}

/* Back button for 404 page */
.back-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b35;
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.back-button:hover {
    background-color: #f7931e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-section h3 i {
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.footer-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .message-box {
        padding: 1.5rem;
    }

    .message-box p {
        font-size: 1rem;
    }

    .footer-links {
        gap: 0.8rem;
    }

    .footer-links a {
        font-size: 1rem;
    }
}

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

    .subtitle {
        font-size: 1rem;
    }

    .message-box {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
}
