/* ================================================
   content.css - Generic Content Area
   (Hero text content, buttons, category cards)
   ================================================ */

/* ==================== HERO TEXT CONTENT (Below Carousel) ==================== */
.hero-content {
    text-align: center;
    max-width: 700px;
    margin-top: 0;
    margin-right: auto;
/*    margin-bottom: 60px; */
    padding: 0 20px;
}

.tagline {
    font-size: 1.9rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: #222;
}

.subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
}

/* Call-to-Action Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.btn-primary {
    background-color: #9C2A2A;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #9C2A2A;
/*    border: 2px solid #9C2A2A; */
}

.btn-primary:hover {
    background-color: #7a2121;
}

.btn-secondary:hover {
    background-color: #9C2A2A;
    color: white;
}

/* ==================== CATEGORIES / BROWSE SECTION ==================== */
/*
.categories-section {
    padding: 60px 20px 80px;
    text-align: center;
    background-color: #ffffff;
}

.categories-section h2 {
    margin-bottom: 35px;
    font-size: 1.7rem;
    color: #222;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.category-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

*/

/* General Content Area Styling */
.content-area {
/*    padding: 40px 20px; */
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 767px) {
    .tagline {
        font-size: 1.65rem;
    }
    
    .subtitle {
        font-size: 1.05rem;
    }
    
    .categories-section {
        padding: 50px 15px 70px;
    }
}

