/* General Wrapper */
.aj-wrapper {
    font-family: 'Outfit', sans-serif;
    color: #A9A9A9;
    background-color: #000000;
    line-height: 1.6;
}

.aj-dark-theme {
    background-color: #0a0a0a;
}

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

.aj-section {
    padding: 80px 0;
}

/* Typography */
.aj-heading {
    font-family: 'Marcellus', serif;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Hero Section */
.aj-hero {
    text-align: center;
    padding: 40px 0 60px; /* Reduced top padding */
}

.aj-hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.aj-hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Layout */
.aj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
.aj-card {
    background: #151515;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.aj-card:hover {
    transform: translateY(-5px);
    border-color: #931A1D;
}

.aj-card-header {
    margin-bottom: 20px;
}

.aj-card-title {
    font-family: 'Marcellus', serif;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.aj-card-location {
    font-size: 14px;
    color: #931A1D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aj-card-body {
    flex-grow: 1;
    margin-bottom: 25px;
}

.aj-card-desc {
    font-size: 16px;
    margin: 0;
}

/* Empty State */
.aj-empty-box {
    background: #151515;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
}

.aj-empty-text {
    font-size: 20px;
    color: #FFFFFF;
    margin: 0;
}

/* CTA Section */
.aj-cta-box {
    background: #111111;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.aj-cta-title {
    font-family: 'Marcellus', serif;
    font-size: 36px;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 15px;
}

.aj-cta-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.aj-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.aj-btn-primary {
    background-color: #931A1D;
    color: #FFFFFF !important; /* Forced white to ensure visibility */
    border: 1px solid #931A1D;
}

.aj-btn-primary:hover {
    background-color: #FFFFFF;
    color: #111111 !important;
    border-color: #FFFFFF;
}

.aj-btn-outline {
    background-color: transparent;
    color: #FFFFFF !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.aj-btn-outline:hover {
    background-color: #931A1D;
    border-color: #931A1D;
    color: #FFFFFF !important;
}

/* Animations */
.aj-fade-in {
    animation: ajFadeInUp 0.8s ease forwards;
}

@keyframes ajFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .aj-hero-title {
        font-size: 40px;
    }
    .aj-cta-title {
        font-size: 28px;
    }
    .aj-section {
        padding: 50px 0;
    }
}
