/* Our Vets Website Styles */

/* CSS Custom Properties */
:root {
    --primary-color: #1976d2;
    --primary-dark: #1456a0;
    --accent-color: #388e3c;
    --text-primary: #1a3556;
    --text-secondary: #2d3e50;
    --text-light: #4a6572;
    --text-muted: #7a869a;
    --background-light: #f4f6f8;
    --shadow-light: rgba(0, 0, 0, 0.10);
    --border-radius: 8px;
    --border-radius-large: 18px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.2rem;
    --spacing-xl: 1.5rem;
}

/* Base Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fafc 100%);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Layout Components */
.container {
    background: #fff;
    padding: var(--spacing-xl) 2.5rem 2rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 32px var(--shadow-light);
    text-align: center;
    max-width: 420px;
    animation: fadeIn 1.2s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* Header Elements */
.logo {
    width: 130px;
    animation: logoPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55);
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.logo {
    width: 130px;
    margin-bottom: 0;
    margin-right: var(--spacing-xl);
    animation: logoPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55);
}

.logo-text {
    text-align: left;
}

.coming-soon {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.5px;
}

.coming-soon-highlight {
    color: var(--accent-color);
}

/* Typography */
h1 {
    color: var(--text-primary);
    font-size: 2.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.subtitle {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

/* Content Sections */
.mission {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

.services {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-size: 0.98rem;
    color: #3a4a5a;
}

.services ul {
    text-align: left;
    margin: 0.7em auto 0;
    max-width: 320px;
}

.about {
    font-size: 0.97rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

/* Contact and Social */
.contact-section {
    margin-top: var(--spacing-md);
}

.contact {
    margin-bottom: var(--spacing-md);
}

.contact a {
    text-decoration: none;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem var(--spacing-xl);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: var(--spacing-lg);
    transition: background 0.2s;
}

.cta-btn:hover {
    background: var(--primary-dark);
}

.socials {
    margin-bottom: var(--spacing-sm);
}

.socials a {
    margin: 0 var(--spacing-sm);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    vertical-align: middle;
}

.socials a .icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 5px;
}

.socials a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Footer */
.footer-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 500px) {
    .container {
        max-width: 95vw;
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    h1 {
        font-size: 1.5rem;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: var(--spacing-md);
        margin-right: 0;
    }

    .logo-text {
        text-align: center;
    }
}
