/*
Theme Name: Australian Aerobatic Club
Theme URI: https://example.com
Author: Grok
Author URI: https://x.ai
Description: Custom theme for Elementor with specific landing page features.
Version: 1.0
Text Domain: elementor-custom-theme
*/

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 44, 94, 0.95); /* Navy blue */
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navigation {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #E30613; /* Bright red */
}

.site-logo img {
    max-height: 65px;
    width: auto;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(28, 44, 94, 0.4), rgba(28, 44, 94, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content h1 {
    font-size: 3rem;
}

.video-section, .mixed-content {
    padding: 6rem 2rem;
    text-align: center;
}

.video-section {
    background: #f8f9fa;
}

.mixed-content {
    background: white;
}

.single-column {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.7;
}

.single-column h1, .single-column h2 {
    color: #1C2C5E;
}

.site-footer {
    background: #1C2C5E; /* Navy */
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content a {
    color: #E30613;
    text-decoration: none;
}

.footer-content a:hover {
    color: #ff4d4d;
    text-decoration: underline;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #E30613;
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
}

.cta-button:hover {
    background: #c00511;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.4);
}
