/**
 * 🎨 Default Theme - Components
 * Styles extracted from original style.css
 */

/* 🔘 Buttons */
.btn-primary,
.btn-hero,
.btn-action {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #B8941F;
    border-color: #B8941F;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-pill);
    padding: 15px 40px;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* 🏆 Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
}

.hero-content h1 {
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    color: var(--color-primary);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* 🎴 Cards */
.card,
.service-card,
.feature-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Service Card Hover Effect */
.service-card::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 4px;
    background: linear-gradient(90deg, var(--color-primary), #B8941F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glass);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

/* Icons */
.service-icon,
.feature-icon {
    width: 80px;
    height: 80px;
    background: #F5E6C8;
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    /* Circle for feature-icon overridden */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.feature-icon {
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, var(--color-primary) 0%, #B8941F 100%);
    color: #fff;
    padding: 60px 0;
}

.stat-number {
    color: #fff;
    font-weight: 900;
    font-size: 3rem;
}

/* Gallery */
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

/* Footer & Header are global, styles inherited via simpler classes or handled separately */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}