/* OCM Coaching - Landing Page Styles */

/* CSS Variables - Brand Colors */
:root {
    --color-copper: #B87333;
    --color-copper-light: #C4894D;
    --color-orange: #E67E22;
    --color-text: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-bg-light: #FDF8F5;
    --color-white: #FFFFFF;
    --color-border: #E8DDD5;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 50%, var(--color-bg-light) 100%);
    min-height: 100vh;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    width: 200px;
    height: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    fill: var(--color-copper);
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    fill: var(--color-copper-light);
    letter-spacing: 4px;
}

/* Tagline */
.tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-orange);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 1s ease-out 0.5s both;
}

.coming-soon h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-copper);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.coming-soon p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* Quote */
.quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-light);
    max-width: 600px;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    border-left: 3px solid var(--color-orange);
    text-align: left;
    animation: fadeIn 1s ease-out 0.7s both;
}

/* Services Section */
.services {
    margin-bottom: var(--spacing-xl);
    width: 100%;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.services h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-copper);
    margin-bottom: var(--spacing-md);
}

.services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.services-list li {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: var(--spacing-xs) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
}

.services-list li:hover {
    border-color: var(--color-copper);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.15);
}

.service-icon {
    font-size: 1.2rem;
}

.service-name {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* Contact Section */
.contact {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 1.1s both;
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-copper);
    margin-bottom: var(--spacing-md);
}

.contact address {
    font-style: normal;
}

.contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.contact-name {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm) !important;
}

.contact a {
    color: var(--color-copper);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--color-orange);
}

.icon {
    width: 18px;
    height: 18px;
    color: var(--color-copper-light);
    flex-shrink: 0;
}

/* Social Links */
.social {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 1.3s both;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    color: var(--color-copper);
    transition: all 0.3s ease;
}

.social a:hover {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(184, 115, 51, 0.25);
}

.social svg {
    width: 22px;
    height: 22px;
}

/* Location SEO Text */
.location-seo {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.7;
    margin-top: var(--spacing-md);
}

/* Footer */
footer {
    text-align: center;
    padding: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: var(--spacing-md);
    }

    .logo {
        width: 160px;
    }

    .coming-soon h1 {
        font-size: 2rem;
    }

    .quote {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }

    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .services-list li {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact p {
        flex-direction: column;
        gap: 4px;
    }

    .social {
        gap: var(--spacing-sm);
    }

    .social a {
        width: 44px;
        height: 44px;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }

    .social, footer {
        display: none;
    }
}
