/* About Page Styles - Consistent with Home Page */

/* Remove custom styles and rely on main style.css for consistency */
/* This file now only contains minimal overrides if needed */

/* Ensure hero section has proper height and positioning */
.hero-section {
    min-height: 70vh;
}

/* Additional spacing for about page specific sections */
.about-hero .hero-title {
    font-size: 3.5rem;
}

.about-hero .hero-subtitle {
    font-size: 2rem;
}

/* Ensure proper spacing between sections */
.section-padding + .section-padding {
    padding-top: 80px;
}

/* Hero Section with Luxury Background */
.about-hero {
    background: linear-gradient(135deg, 
        rgba(1, 76, 53, 0.95) 0%, 
        rgba(1, 214, 155, 0.85) 50%, 
        rgba(1, 76, 53, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(1, 214, 155, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(1, 76, 53, 0.1) 0%, transparent 50%);
    animation: luxuryFloat 20s ease-in-out infinite;
}

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Mission Statement - Premium Card */
.mission-statement {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 
        0 20px 60px rgba(1, 76, 53, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(1, 214, 155, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #014c35, #01d69b, #014c35);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.mission-statement h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #014c35;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-statement p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    font-weight: 300;
    margin: 0;
}

/* About Cards - Luxury Design */
.about-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 
        0 15px 40px rgba(1, 76, 53, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(1, 214, 155, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 214, 155, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(1, 76, 53, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #014c35, #01d69b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(1, 76, 53, 0.3);
    position: relative;
}

.about-card .card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #01d69b, #014c35);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover .card-icon::before {
    opacity: 1;
}

.about-card .card-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.about-card:hover .card-icon i {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #014c35;
    margin-bottom: 1rem;
}

.about-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
    margin: 0;
}

/* Fun Fact Section - Premium Style */
.fun-fact-section {
    background: linear-gradient(135deg, #014c35 0%, #01d69b 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.fun-fact-section::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: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fun-fact-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.fun-fact-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* CTA Section - Luxury Design */
.about-cta {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(1, 76, 53, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(1, 214, 155, 0.1);
    position: relative;
    overflow: hidden;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #014c35;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Premium Buttons */
.btn-luxury {
    background: linear-gradient(135deg, #014c35, #01d69b);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(1, 76, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(1, 76, 53, 0.4);
    color: white;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury i {
    transition: transform 0.3s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .lead {
        font-size: 1.2rem;
    }
    
    .mission-statement,
    .about-cta {
        padding: 2.5rem 2rem;
    }
    
    .about-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .fun-fact-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-statement h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.5rem;
    }
}

/* Luxury Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #014c35, #01d69b);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #01d69b, #014c35);
}