/* ==============================================
   MISFIT MUTTS CLUB - COMING SOON PAGE STYLES
   ============================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Root Variables - Character Colors */
:root {
    --color-lola: #8B5CF6;
    --color-barnaby: #87CEEB;
    --color-jess: #FF69B4;
    --color-ruby: #EF4444;
    --color-max: #F97316;
    --color-dodge: #22C55E;
    --color-elly: #FFD700;
    
    --bg-primary: #E3F2FD;
    --bg-card: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: #FFFFFF;
    
    --border-radius: 16px;
}

/* Body & Container */
body {
    font-family: 'Fredoka', 'Comic Sans MS', cursive, sans-serif;
    background: url('images/morning.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Paw Print Background Animation */
.paw-prints {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--color-lola) 1px, transparent 1px),
        radial-gradient(circle at 25% 40%, var(--color-barnaby) 1px, transparent 1px),
        radial-gradient(circle at 45% 15%, var(--color-jess) 1px, transparent 1px),
        radial-gradient(circle at 65% 35%, var(--color-ruby) 1px, transparent 1px),
        radial-gradient(circle at 80% 25%, var(--color-max) 1px, transparent 1px),
        radial-gradient(circle at 90% 45%, var(--color-dodge) 1px, transparent 1px),
        radial-gradient(circle at 15% 70%, var(--color-elly) 1px, transparent 1px);
    background-size: 200px 200px;
    animation: pawFloat 60s linear infinite;
}

@keyframes pawFloat {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* Header */
header {
    text-align: center;
    padding: 20px 0 30px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-banner {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.tagline {
    font-family: 'Bubblegum Sans', 'Fredoka', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Character Showcase */
.characters {
    padding: 40px 20px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.character-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid var(--character-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--character-color);
}

.character-card:hover,
.character-card:focus-within {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.character-card .image-wrapper {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: var(--character-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.character-card img {
    width: 100%;
    height: auto;
    max-width: 180px;
    transition: transform 0.3s ease;
}

.character-card:hover .image-wrapper,
.character-card:focus-within .image-wrapper {
    transform: scale(1.05) rotate(2deg);
}

.character-card:hover img {
    transform: scale(1.05);
}

.character-name {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--character-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Email Signup Section */
.signup-section {
    padding: 50px 20px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.signup-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #FFFFFF;
}

.signup-card h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.signup-description {
    font-size: 1.1rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.signup-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
    border: 3px solid #FFFFFF;
    border-radius: var(--border-radius);
    background: #FFFFFF;
    transition: all 0.3s ease;
    color: #1A237E;
}

.email-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: #9CA3AF;
}

.submit-button {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Bubblegum Sans', cursive;
    background: linear-gradient(135deg, var(--color-ruby) 0%, var(--color-lola) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover,
.submit-button:focus {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

.button-icon {
    font-size: 1.5rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #E0E0E0;
    font-style: italic;
}

/* Social Media Section */
.social-section {
    padding: 50px 20px;
    text-align: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.social-section h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-width: 140px;
}

.social-link:hover,
.social-link:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

.social-link.instagram {
    border: 3px solid #E4405F;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: #FFFFFF;
}

.social-link.facebook {
    border: 3px solid #1877F2;
}

.social-link.facebook:hover {
    background: #1877F2;
    color: #FFFFFF;
}

.social-link.tiktok {
    border: 3px solid #FFFFFF;
}

.social-link.tiktok:hover {
    background: #000000;
    color: #FFFFFF;
}

.social-link.pinterest {
    border: 3px solid #E60023;
}

.social-link.pinterest:hover {
    background: #E60023;
    color: #FFFFFF;
}

.social-name {
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #CC5500 0%, #E86A33 50%, #D2691E 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.copyright {
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-tagline {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo-banner {
        max-width: 400px;
    }
    
    .character-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .signup-card {
        padding: 30px 20px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        min-width: 120px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.8rem;
    }
    
    .character-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .character-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .character-card,
    .signup-card,
    .social-link {
        border-width: 4px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .paw-prints {
        animation: none;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--color-lola);
    outline-offset: 2px;
}