/**
 * Activities and Services Section Styles
 * Based on Network Digital Standard Guide - Activities & Services Guidelines
 * 
 * @package Dacia_Dealers_Theme
 */

/* ============================================
   ACTIVITIES SERVICES SECTION CONTAINER
   ============================================ */

.activities-services-section {
    padding: 4rem 0;
    background-color: #ffffff;
    width: 100%;
}

.activities-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER
   ============================================ */

.activities-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.activities-services-title {
    font-size: 2.75rem; /* +4pt from 2.5rem */
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Dacia Block', sans-serif;
}

/* ============================================
   GRID - Design Guide: 3 columns, 2 rows
   ============================================ */

.activities-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

/* ============================================
   ACTIVITY SERVICE CARD
   ============================================ */

.activity-service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: none;
    padding: 0;
    position: relative;
}

.activity-service-content {
    display: flex;
    flex-direction: column;
    padding-left: 12px; /* Space for vertical line */
    border-left: 2px solid #e0e0e0; /* Thin vertical gray line on left */
    min-height: 150px;
}

/* ============================================
   CARD HEADER (Title + Info Icon)
   ============================================ */

.activity-service-header-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.activity-service-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Dacia Block', sans-serif;
    line-height: 1.3;
    flex: 1;
}

.activity-service-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: default;
}

.activity-service-info-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   CARD DESCRIPTION
   ============================================ */

.activity-service-description {
    font-size: 1.25rem; /* +4pt from 1rem */
    color: #333333;
    line-height: 1.6;
    font-family: 'Read Font', sans-serif;
}

.activity-service-description p {
    font-size: 1.7rem;
    margin: 0 0 0.75rem 0;
}

.activity-service-description p:last-child {
    margin-bottom: 0;
}

.activity-service-schedule {
    font-weight: 500;
    color: #666666;
}

.activity-service-contact {
    font-size: 1.125rem; /* +4pt from 0.9rem */
    color: #666666;
    font-style: italic;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 991px) {
    .activities-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .activities-services-title {
        font-size: 2.25rem; /* +4pt from 2rem */
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 767px) {
    .activities-services-section {
        padding: 2rem 0;
    }
    
    .activities-services-section .container {
        padding: 0 1rem;
    }
    
    .activities-services-header {
        margin-bottom: 2rem;
    }
    
    .activities-services-title {
        font-size: 1.75rem; /* +4pt from 1.5rem */
    }
    
    .activities-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-service-content {
        padding-left: 10px;
        border-left-width: 1px;
    }
    
    .activity-service-title {
        font-size: 2.3rem; /* Same as desktop */
    }
    
    .activity-service-description p {
        font-size: 1.7rem; /* Same as desktop */
    }
}
