/* About Page Specific Styles */

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}


/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-intro {
    padding: 20px 0;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

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

.content-section {
    margin-bottom: 60px;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #8B0000;
}

.content-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #8B0000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-btn:hover {
    background-color: #A00000;
    transform: translateY(-2px);
}

.contact-btn.secondary {
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.contact-btn.secondary:hover {
    background-color: #8B0000;
    color: #fff;
}

/* Active Navigation Link */
.nav-list a.active {
    color: #8B0000;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .about-image img {
        height: auto;
        min-height: 450px;
        max-height: 550px;
        object-fit: cover;
        object-position: center center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        margin-bottom: 40px;
    }
    
    .content-section h3 {
        font-size: 1.8rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .contact-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 10px;
    }
    
    .about-hero {
        padding: 20px 0;
        gap: 30px;
    }
    
    .about-image img {
        height: auto;
        min-height: 400px;
        max-height: 450px;
        object-fit: cover;
        object-position: center center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}
