/* Auxiliary Pages Styles for SynovusTu */

/* Reset and Base 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: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #374151;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #64748b;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #64748b;
}

/* Color System */
:root {
    --slate: #64748b;
    --graphite: #374151;
    --electric-teal: #14b8a6;
    --light-slate: #f8fafc;
    --medium-slate: #e2e8f0;
    --dark-graphite: #1f2937;
    --teal-light: #f0fdfa;
    --teal-dark: #0d9488;
}

/* Logo and Branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--graphite);
    letter-spacing: -0.025em;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid var(--medium-slate);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--electric-teal);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--electric-teal);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid var(--electric-teal);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--light-slate) 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--slate);
    font-style: italic;
}

/* Content Sections */
.legal-content,
.mission-vision,
.company-values,
.leadership-team,
.company-history,
.contact-cta {
    padding: 80px 0;
}

.content-sections {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-slate);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--dark-graphite);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--graphite);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 1rem;
}

.content-section li {
    margin-bottom: 0.75rem;
}

/* About Page Specific Styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-block h2 {
    color: var(--dark-graphite);
    margin-bottom: 1.5rem;
}

.content-block p {
    color: var(--slate);
    line-height: 1.7;
}

/* Company Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--medium-slate);
    background-color: white;
}

.value-icon {
    margin-bottom: 24px;
}

.value-icon img {
    width: 48px;
    height: 48px;
}

.value-item h3 {
    color: var(--graphite);
    margin-bottom: 16px;
}

.value-item p {
    color: var(--slate);
}

/* Leadership Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--medium-slate);
    overflow: hidden;
}

.member-photo {
    height: 200px;
    background-color: var(--light-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05);
}

.photo-placeholder {
    color: var(--slate);
    font-weight: 500;
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    color: var(--graphite);
    margin-bottom: 8px;
}

.member-title {
    color: var(--electric-teal);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.member-info p {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Company History */
.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.history-text p {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.history-visual {
    display: flex;
    justify-content: center;
}

.history-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Image Placeholder */
.image-placeholder {
    background-color: var(--medium-slate);
    border: 2px dashed var(--slate);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    color: var(--slate);
    font-weight: 500;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact CTA */
.contact-cta {
    background-color: var(--light-slate);
    text-align: center;
}

.contact-cta h2 {
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact Info */
.contact-info {
    background-color: var(--teal-light);
    border-left: 4px solid var(--electric-teal);
    padding: 24px 32px;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0;
    color: var(--graphite);
}

.contact-info a {
    color: var(--electric-teal);
    text-decoration: none;
}

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

/* Section Descriptions */
.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid var(--medium-slate);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 0;
    color: var(--graphite);
    font-size: 0.875rem;
}

.cookie-text a {
    color: var(--electric-teal);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: var(--electric-teal);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--teal-dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--slate);
    border: 1px solid var(--medium-slate);
}

.cookie-reject:hover {
    background-color: var(--light-slate);
}

.cookie-customize {
    background-color: transparent;
    color: var(--electric-teal);
    border: 1px solid var(--electric-teal);
}

.cookie-customize:hover {
    background-color: var(--teal-light);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: var(--dark-graphite);
    margin-bottom: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--medium-slate);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: var(--graphite);
    margin-bottom: 8px;
}

.cookie-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--electric-teal);
}

.cookie-category p {
    font-size: 0.875rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Footer */
.footer {
    background-color: var(--dark-graphite);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-container .brand-name {
    color: white;
}

.footer-brand p {
    color: var(--medium-slate);
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--medium-slate);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--electric-teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--slate);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: var(--medium-slate);
    margin: 0;
    font-size: 0.875rem;
}

.footer-contact a {
    color: var(--electric-teal);
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .content-grid,
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content,
    .mission-vision,
    .company-values,
    .leadership-team,
    .company-history,
    .contact-cta {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .legal-content,
    .mission-vision,
    .company-values,
    .leadership-team,
    .company-history,
    .contact-cta {
        padding: 40px 0;
    }
    
    .image-placeholder {
        padding: 40px 20px;
        min-height: 200px;
    }
    
    .cookie-modal-content {
        padding: 24px;
        margin: 10px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}