/* styles.css - Mobile-First, SEO-Optimized, AeroCreeper Branding */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.first-header {
	margin-top: 4em;
    background-color: #f4f7fa;
    color: #0a2540;
    text-align: center;
    padding: 60px 20px;
	border-radius: 8px;
}

.logo-container {
	display: flex;
	justify-content: center;  
	align-items: center;
	height: 140px;
}

.logo {
    width: 420px;
    max-width: 90%;
}

h1 {
    font-size: 2.35rem;
    margin: 15px 0;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.first-header p {
    font-size: 1.15rem;
    max-width: 820px;
    margin: 0 auto 25px;
    opacity: 0.95;
}

.cta {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 8px;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cta:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.35);
}

.cta.secondary {
    background-color: #fff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta.secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

/* Hero Image */
#hero-image {
	display: flex;
	justify-content: center;  
	align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Features */
#features {
    padding: 70px 20px;
    background-color: #fff;
    text-align: center;
}

#features h2 {
    font-size: 2.25rem;
    margin-bottom: 45px;
    color: #0a2540;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: #f8f9fb;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: left;
}

.feature h3 {
    font-size: 1.55rem;
    margin: 18px 0 12px;
    color: #0a2540;
}

.feature p {
    font-size: 1.02rem;
    color: #555;
}

/* Testimonials */
#testimonials {
    padding: 70px 20px;
    background-color: #f4f7fa;
	border-radius: 8px;
}

#testimonials h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 55px;
    color: #0a2540;
}

.testimonial {
    max-width: 1000px;
    margin: 0 auto 55px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

blockquote {
    padding: 32px;
    flex: 1;
}

blockquote h3 {
    color: #0a2540;
    font-size: 1.65rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.subtitle {
    font-style: italic;
    color: #0066cc;
    margin-bottom: 22px;
    font-weight: bold;
}

blockquote p {
    margin-bottom: 16px;
    color: #444;
    line-height: 1.75;
}

/* Product Showcase */
#product-showcase {
    padding: 70px 20px;
    text-align: center;
    background-color: #fff;
}

#product-showcase h2 {
    font-size: 2.25rem;
    margin-bottom: 45px;
    color: #0a2540;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 45px;
}

.product-img {
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: translateY(-6px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial {
        flex-direction: row;
    }

    .testimonial-img {
        width: 46%;
        height: auto;
    }

    blockquote {
        padding: 42px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.85rem;
    }

    .cta {
        padding: 13px 26px;
        font-size: 1.02rem;
    }

    .testimonial-img {
        height: 210px;
    }
}