/* Global Styles for brandonwass.com */
/* Cross-platform compatible CSS */

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

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

header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #34495e;
    border-radius: 4px;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    color: white;
    margin-top: 2rem;
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    /* Mobile nav styling handled by responsive.css */
    /* nav ul styling moved to responsive.css to avoid conflicts */
    
    main {
        margin: 1rem;
        padding: 1rem;
    }
    
    /* Mobile-specific improvements */
    body {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Import responsive CSS */
@import url('responsive.css');

