/* Goldridge LLC - Minimal Stylesheet */

/* Base font - system font stack */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5em; /* Match Skeleton's body font-size */
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Override Skeleton container max-width */
.container {
    max-width: 1100px; /* Match current design */
}

/* Max content width */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

/* One accent color */
a {
    color: #0066cc;
}

a:hover {
    color: #0052a3;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

.content-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-image.small {
    max-width: 400px;
}

/* Navigation at top */
header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #ddd;
}

/* Navigation - Horizontal on mobile (Issue #006) */
header nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    gap: 2rem;
}

footer nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

header nav li,
footer nav li {
    margin: 0;
}

header nav a,
footer nav a {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Book Appointment Button in Navigation */
.book-appointment-btn {
    background-color: #0066cc;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color 0.2s;
}

.book-appointment-btn:hover {
    background-color: #0052a3;
    text-decoration: none !important;
}

/* Footer at bottom */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
    color: #666;
}

footer nav {
    margin-bottom: 1rem;
}

/* Footer nav already handled above */

footer nav a {
    text-decoration: none;
    color: #666;
}

footer nav a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.footer-disclaimer {
    margin: 1rem 0;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.footer-disclaimer:empty {
    display: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #0052a3;
}

.submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
    
    header {
        padding: 1rem;
    }
    
    /* Mobile navigation - keep horizontal (Issue #006) */
    header nav ul,
    footer nav ul {
        gap: 1rem;
    }
    
    header nav a,
    footer nav a {
        padding: 0.4rem 0.8rem;
        font-size: 1.5em; /* Match body font size (Skeleton sets body to 1.5em) */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .book-appointment-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Very small screens - adjust spacing */
@media (max-width: 550px) {
    header nav ul,
    footer nav ul {
        gap: 0.5rem;
    }
    
    header nav a,
    footer nav a {
        padding: 0.4rem 0.8rem;
        font-size: 1.5em; /* Match body font size (Skeleton sets body to 1.5em) */
    }
}

