
/* AAE Apparel - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Gold/Dark Theme */
    --brand-primary: #FFB800;
    --brand-dark: #1a1a1a;
    --brand-darker: #0f0f0f;
    --brand-light: #FFB80020;
    --brand-accent: #FFC933;
    --brand-neutral: #888888;

    /* Text Colors */
    --white: #FFFFFF;
    --light-gray: #E5E7EB;
    --medium-gray: #9CA3AF;
    --dark-gray: #374151;
    --text-muted: #888888;

    /* Status Colors */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--brand-dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Primary */
.cms-bg-primary {
    background-color: var(--brand-primary) !important;
}
.cms-text-primary {
    color: var(--brand-primary) !important;
}
.cms-border-primary {
    border-color: var(--brand-primary) !important;
}

/* Dark */
.cms-bg-dark {
    background-color: var(--brand-dark) !important;
}
.cms-text-dark {
    color: var(--brand-dark) !important;
}
.cms-border-dark {
    border-color: var(--brand-dark) !important;
}

/* Light */
.cms-bg-light {
    background-color: var(--brand-light) !important;
}
.cms-text-light {
    color: var(--white) !important;
}
.cms-border-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Accent */
.cms-bg-accent {
    background-color: var(--brand-accent) !important;
}
.cms-text-accent {
    color: var(--brand-accent) !important;
}
.cms-border-accent {
    border-color: var(--brand-accent) !important;
}

/* Neutral */
.cms-text-neutral {
    color: var(--brand-neutral) !important;
}
.cms-bg-neutral {
    background-color: var(--brand-neutral) !important;
}
.cms-border-neutral {
    border-color: var(--brand-neutral) !important;
}

/* Typography */
.cms-h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cms-h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cms-h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cms-h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.cms-h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
}

.cms-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 8px;
}

.cms-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Links */
.cms-link {
    text-decoration: none;
    transition: all 200ms ease;
    color: var(--brand-primary);
}

.cms-link:hover {
    color: var(--brand-accent);
}

/* Buttons */
.cms-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
}

.cms-btn-primary {
    background-color: var(--brand-primary);
    color: var(--brand-dark);
    border-color: var(--brand-primary);
}

.cms-btn-primary:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
}

.cms-btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cms-btn-outline:hover {
    background-color: var(--white);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.cms-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Cards */
.cms-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    transition: all 300ms ease;
}

.cms-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Form Elements */
.cms-form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 200ms ease;
    box-sizing: border-box;
}

.cms-form-control:hover {
    border-color: rgba(255, 184, 0, 0.5);
}

.cms-form-control:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
}

.cms-form-control::placeholder {
    color: var(--text-muted);
}

/* ================================================
   HERO SECTION STYLES
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.8) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.hero-gradient-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(255, 184, 0, 0.15) 0%,
        transparent 50%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--brand-primary);
    display: block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin-top: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.5; }
}

/* ================================================
   SECTION STYLES
   ================================================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--brand-darker);
}

.section-gradient {
    background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-darker) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   SERVICE CARDS
   ================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 300ms ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 184, 0, 0.2);
    transform: scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--brand-primary);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   WORK GALLERY
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 300ms ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 300ms ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--brand-darker) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 184, 0, 0.05) 100%);
    border-top: 1px solid rgba(255, 184, 0, 0.2);
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
}

.cta-phone svg {
    width: 28px;
    height: 28px;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */
@media (max-width: 768px) {
    .cms-h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .cms-h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cms-h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cms-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ================================================
   ANIMATION UTILITIES
   ================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 600ms ease;
}

.fade-in.animated {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Text split animation support */
.ft-split-char,
.ft-split-word {
    display: inline-block;
}
