/* ===================================
   About Section Styles
   =================================== */

.about-section {
    padding: 80px 20px;
    background: var(--white);
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

/* Content Side */
.about-content {
    padding-right: 20px;
}

@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
    }
}

.about-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--gray-900);
    margin-bottom: 24px;
    font-family: var(--font-family-elegant);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.about-title-accent {
    color: var(--brand-color);
}

.about-description {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .about-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Features List */
.about-features {
    list-style: none;
    padding: 0;
}

.about-feature {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-feature {
        font-size: 15px;
    }
}

.about-feature-icon {
    position: absolute;
    left: 0;
    color: var(--brand-color);
    font-size: 20px;
    font-weight: bold;
}

/* Image Side */
.about-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

@media (max-width: 768px) {
    .about-image-container {
        min-height: 300px;
    }
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Placeholder when no image */
.about-image-placeholder {
    background: linear-gradient(135deg, var(--brand-color), #667eea);
    height: 400px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-image-placeholder {
        height: 300px;
    }
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: spin 20s linear infinite;
}

.about-placeholder-icon {
    font-size: 80px;
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-placeholder-icon {
        font-size: 60px;
    }
}