/* Pulse::Studio Custom Styles */

:root {
    --pulse-primary: #4A90E2;
    --pulse-secondary: #50C878;
    --pulse-accent: #F39C12;
    --pulse-purple: #9B59B6;
    --pulse-red: #E74C3C;
    --pulse-teal: #1ABC9C;
}

/* Brand Styling */
.brand-pulse {
    color: var(--pulse-primary);
    font-weight: 700;
}

.brand-separator {
    color: var(--pulse-accent);
    font-weight: 700;
    padding: 0 2px;
}

.brand-studio {
    color: var(--pulse-secondary);
    font-weight: 700;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar {
    border-bottom: 3px solid var(--pulse-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-bottom: 5px solid var(--pulse-primary);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Features Section */
.feature-box {
    padding: 2rem;
}

.feature-box i {
    display: block;
}

/* Services Section */
.services-section {
    min-height: 400px;
}

/* Forms */
.form-control:focus {
    border-color: var(--pulse-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
    background-color: var(--pulse-primary);
    border-color: var(--pulse-primary);
}

.btn-primary:hover {
    background-color: #3a7bc8;
    border-color: #3a7bc8;
}

.btn-success {
    background-color: var(--pulse-secondary);
    border-color: var(--pulse-secondary);
}

.btn-success:hover {
    background-color: #40a860;
    border-color: #40a860;
}

/* Cards */
.card {
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}

/* Alerts */
.alert {
    border-radius: 8px;
}

/* Footer */
footer {
    margin-top: auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Nav Tabs */
.nav-tabs .nav-link {
    color: #6c757d;
}

.nav-tabs .nav-link.active {
    color: var(--pulse-primary);
    border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: 2px solid var(--pulse-primary);
}

/* Account Page */
.card-header h5 {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }
}

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

.service-card {
    animation: fadeIn 0.5s ease-out;
}

/* HTMX Loading States */
.htmx-request .htmx-indicator {
    display: inline-block;
}

.htmx-indicator {
    display: none;
}
