/**
 * About Page Styles
 */

/* General Styles */
.about-page-wrapper {
    max-width: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #8A4D0F;
    font-weight: 400;
}

.dr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.about-hero {
    background-color: #f9f9f9;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    color: #8A4D0F;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FF9E2C;
}

/* About Content Section */
.about-content-section {
    padding: 20px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #8A4D0F;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

/* About Grid */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-text-container {
    flex: 1;
    min-width: 300px;
    order: 1;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    order: 2;
    display: flex;
    justify-content: center;
}

.about-profile-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-profile-image {
    transform: scale(1.02);
}

.about-text-container {
    flex: 1;
    min-width: 300px;
}

/* Quote Section */
.about-quote-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background-color: #f9f9f9;
    margin: 40px 0;
}

.about-quote {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    color: #8A4D0F;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.about-quote:before,
.about-quote:after {
    content: '"';
    font-size: 4rem;
    color: #FF9E2C;
    opacity: 0.3;
    position: absolute;
}

.about-quote:before {
    top: -30px;
    left: -20px;
}

.about-quote:after {
    bottom: -50px;
    right: -20px;
}

.about-quote p {
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Content Sections */
.about-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #8A4D0F;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.about-subheading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #FF9E2C;
}

/* Feature Grid */
.about-features {
    margin: 40px 0;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-feature {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-feature:hover .feature-image {
    transform: scale(1.05);
}

.about-feature:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

/* Social Section */
.about-social {
    text-align: center;
    padding: 20px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.social-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    color: #8A4D0F;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FF9E2C;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 158, 44, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #FF9E2C;
    color: white;
    border: 2px solid #FF9E2C;
}

.btn-primary:hover {
    background-color: #F08307;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 158, 44, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
    }
    
    .about-text-container {
        order: 2;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-image-container {
        order: 1;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .about-profile-image {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-quote {
        font-size: 1.5rem;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .about-quote:before,
    .about-quote:after {
        font-size: 3rem;
    }
    
    .about-quote:before {
        top: -20px;
        left: -10px;
    }
    
    .about-quote:after {
        bottom: -40px;
        right: -10px;
    }
}

@media (max-width: 576px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-quote {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .about-heading {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-intro {
        padding: 0 15px;
    }
}
