/* Mira Caldera Landing Page - Art/Mediterranean Aesthetic */

:root {
    /* Mira's Color Palette - Warm, Mediterranean, Artistic */
    --primary-color: #D4A574; /* Warm Sand/Gold */
    --secondary-color: #6B9AC4; /* Mediterranean Blue */
    --accent-color: #E8A87C; /* Terracotta */
    --accent-pink: #F5A9B8; /* Soft Rose */
    --bg-light: #FFF8F0; /* Warm Cream */
    --bg-dark: #1a1410;
    --bg-card: rgba(255, 248, 240, 0.95);
    --text-primary: #2c2416;
    --text-secondary: #6b5d4f;
    --gradient-primary: linear-gradient(135deg, #D4A574 0%, #E8A87C 100%);
    --gradient-secondary: linear-gradient(135deg, #6B9AC4 0%, #89B5D9 100%);
    --shadow-soft: 0 4px 20px rgba(212, 165, 116, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #FFF8F0 0%, #F5E6D3 50%, #FFF8F0 100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(107, 154, 196, 0.06) 0%, transparent 60%);
}

/* Main Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.9s ease-out;
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
}

.profile-image:hover::after {
    opacity: 1;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-card);
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 50px;
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 26px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.35s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.15), transparent);
    transition: left 0.6s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.25);
    border-color: var(--accent-color);
}

.link-button.primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.link-button.primary:hover {
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    transform: translateY(-5px) scale(1.01);
}

.link-button.primary .link-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Tools Section */
.tools-section {
    margin-bottom: 50px;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(107, 154, 196, 0.06) 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    animation: fadeInUp 0.9s ease-out 0.5s both;
}

.tools-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 35px;
    font-style: italic;
    line-height: 1.6;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.tool-card {
    background: var(--bg-card);
    padding: 24px 18px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    transition: all 0.35s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    border-color: var(--accent-color);
}

.tool-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.2));
}

.tool-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.tool-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Featured Art Section */
.featured-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.9s ease-out 0.4s both;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.art-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.art-card:hover {
    transform: translateY(-5px);
}

.art-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.art-card:hover .art-image {
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.art-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    animation: fadeInUp 0.9s ease-out 0.6s both;
}

.footer-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 15px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 18px;
    }

    .name {
        font-size: 2.3rem;
    }

    .profile-image {
        width: 130px;
        height: 130px;
    }

    .link-button {
        padding: 18px 22px;
        gap: 16px;
    }

    .icon {
        font-size: 1.8rem;
    }

    .art-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.92rem;
    }

    .bio {
        font-size: 1rem;
    }

    .link-button {
        padding: 16px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Loading State */
.loading {
    opacity: 0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
.link-button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .background-container,
    .footer-links {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

