/* American Patriot Brief Website Styles */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f4f6f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2F3949;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

.logo h1 {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.logo .tagline {
    color: #e07856;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav a:hover {
    color: #e07856;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2F3949 0%, #1a2233 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '★';
    position: absolute;
    font-size: 400px;
    color: rgba(255,255,255,0.02);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero h2 span {
    color: #e07856;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #e07856;
    color: white;
    padding: 16px 48px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(224,120,86,0.4);
}

.cta-button:hover {
    background: #c96a47;
    transform: translateY(-2px);
}

.hero-note {
    margin-top: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Breaking banner */
.breaking-bar {
    background: #e07856;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breaking-bar span {
    background: white;
    color: #e07856;
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 10px;
    font-weight: 900;
}

/* Features */
.features {
    padding: 70px 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #2F3949;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f4f6f9;
    padding: 35px 30px;
    border-radius: 6px;
    text-align: center;
    border-top: 4px solid #e07856;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #2F3949;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* What you'll receive */
.what-receive {
    padding: 70px 0;
    background: #2F3949;
    color: white;
}

.what-receive h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 40px 50px;
}

.receive-list {
    list-style: none;
}

.receive-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

.receive-list li::before {
    content: '→';
    color: #e07856;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.receive-list li:last-child {
    border-bottom: none;
}

.receive-list li strong {
    color: white;
}

/* Recent stories */
.preview {
    padding: 70px 0;
    background: #f4f6f9;
}

.preview h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #2F3949;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-left: 4px solid #e07856;
    transition: transform 0.2s;
}

.story-card:hover {
    transform: translateY(-3px);
}

.story-card h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #2F3949;
    line-height: 1.4;
}

.story-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #e07856;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.9;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    display: inline-block;
    background: white;
    color: #e07856;
    padding: 16px 48px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.cta-button-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a2030;
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
}

.footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 12px;
}

.footer a:hover {
    color: #e07856;
}

.footer p {
    margin-bottom: 12px;
}

/* About page */
.page-hero {
    background: linear-gradient(135deg, #2F3949 0%, #1a2233 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
    background: white;
}

.content-section .container {
    max-width: 800px;
}

.content-section h3 {
    font-size: 26px;
    color: #2F3949;
    margin-bottom: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.content-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Subscribe form */
.subscribe-section {
    padding: 70px 0;
    background: white;
}

.subscribe-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #2F3949;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.subscribe-section .subheading {
    text-align: center;
    color: #666;
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: #2F3949;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #e07856;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.submit-btn {
    width: 100%;
    background: #e07856;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #c96a47;
}

.success-message {
    display: none;
    background: #2F3949;
    color: white;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.privacy-note {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 { font-size: 32px; }
    .header .container { flex-direction: column; gap: 16px; }
    .nav a { margin: 0 10px; }
    .content-box { padding: 30px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 28px; }
}
