/* NCAA Hockey App Support Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 2rem;
    color: #007AFF;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Contact Section */
.contact {
    margin-bottom: 3rem;
}

.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.btn {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #0056CC;
    transform: translateY(-2px);
}

/* App Info Section */
.app-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

/* Privacy Section */
.privacy {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.privacy ul {
    list-style: none;
    padding-left: 0;
}

.privacy li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.privacy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}

/* Email Address Styling */
.email-address {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    transition: all 0.3s ease;
    cursor: text;
    user-select: all;
}

.email-address:hover {
    background: #e9ecef;
    border-color: #007AFF;
}

.email-address strong {
    font-size: 1.1rem;
    color: #007AFF;
    letter-spacing: 0.5px;
}

/* Privacy Policy Styles */
.privacy-policy {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-policy h2 {
    color: #007AFF;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.policy-section h4 {
    color: #007AFF;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.policy-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #444;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 4px solid #007AFF;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #007AFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.disclaimer {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #ffc107;
}

.back-link {
    text-align: center;
    margin: 2rem 0;
}

.btn-secondary {
    display: inline-block;
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-1px);
}

/* Mobile responsive for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .privacy-policy h2 {
        font-size: 1.8rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}
