/* Additional styles for Asbesto Sontario Art Studio */
/* Main color palette is defined in layout file */

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 5px 15px rgba(var(--primary-dark-rgb), 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 8px 25px rgba(var(--primary-dark-rgb), 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-light {
    background-color: var(--light);
}

.bg-white {
    background-color: white;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Enhanced hero section animations */
.hero__title {
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__description {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__features {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__cta-button {
    animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced page hero animations */
.page-hero__title {
    animation: slideInDown 1s ease-out;
}

.page-hero__subtitle {
    animation: slideInDown 1s ease-out 0.2s both;
}

.page-hero__description {
    animation: slideInDown 1s ease-out 0.4s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none;
    }
}