/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background-color: #000;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
}

/* Top section with logo and headline */
.top-section {
    background-color: #FFB612; /* Steelers Gold */
    color: #000;
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}

.horizontal-line {
    height: 2px;
    background-color: #000;
    flex-grow: 1;
    max-width: 120px;
}

.steelers-logo {
    width: 100px;
    height: 100px;
    margin: 0 20px;
}

.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.headline h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.sign-up-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Stadium section */
.stadium-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.stadium-img {
    width: 100%;
    display: block;
}

/* Email section */
.email-section {
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Allow it to take full width initially */
    max-width: 800px; /* Limit its maximum width */
    margin: 0 auto; /* Center the section horizontally */
}

.email-section input[type="text"],
.email-section input[type="email"] {
    width: 90%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #FFB612;
    border-radius: 5px;
    font-size: 1.2rem;
    background-color: #fff; /* Ensure background is white */
    color: #000; /* Ensure text color is black */
}

.email-section input[type="text"]::placeholder,
.email-section input[type="email"]::placeholder {
    color: #888; /* Placeholder text color */
}

.submit-btn {
    width: 90%;
    padding: 1rem;
    background-color: #FFB612;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.links {
    font-size: 0.8rem;
    color: #fff;
}

.links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .headline h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .headline h1 {
        font-size: 2.5rem;
    }
    
    .headline h2 {
        font-size: 1.2rem;
    }
}

/* SEO Content Section */
.seo-content {
    padding: 2rem 1rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto; /* Add top/bottom margin to the section itself */
    background-color: #000; /* Ensure background is black if container changes */
}

.seo-content h3 {
    margin-top: 1.5rem; /* Space above headings */
    margin-bottom: 1rem; /* Space below headings */
    color: #fff; /* Make headings white */
    font-size: 1.4rem;
}

.seo-content p {
    margin-bottom: 1.2rem; /* Space below paragraphs */
}

.seo-content ul {
    margin-bottom: 1.2rem; /* Space below lists */
    padding-left: 20px; /* Indent list items */
}

.seo-content li {
    margin-bottom: 0.8rem; /* Space below list items */
}

.seo-content strong {
    color: #FFB612; /* Highlight strong text */
}

.seo-content a {
    color: #fff; /* Change link color to white */
    text-decoration: underline; /* Add underline */
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    display: block;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 2px solid #16a34a;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid #dc2626;
}

.form-message.info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 2px solid #2563eb;
} 