/* Google Fonts - Elegant and Readable */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap');

/* Base Styles - Light Theme */
body {
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    background: #faf8f5; /* Light cream background */
    color: #333; /* Dark text for contrast */
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Header with a Luxurious Feel */
.about-hero-content h1{
    text-align: center;
    color: #8a6d3b; /* Deep gold-brown */
    padding: 20px 20px 5px 20px;
    font-family: 'Carattere', serif;
    font-weight: 400;
    font-size: 5rem;
    word-spacing: 1rem;
}

.about-hero-content p{
    text-align: center;
    color: #8a6d3b; /* Deep gold-brown */
    font-family: serif;
    font-size: 20px;
    letter-spacing: 1px;
}

/* About Section - Balanced Layout */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 32px;
    color: #a67c52; /* Rich Gold */
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #a67c52;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.2);
}

/* Founders Section - Updated to Match Mission & Values Style */
.founders-section {
    text-align: center;
    padding: 60px 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #a67c52;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #a67c52;
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.founder-image {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    margin: 0 auto 20px;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-content {
    flex: 2;
    min-width: 300px;
    padding: 0 20px;
}

.founder-content h3 {
    font-size: 26px;
    color: #a67c52;
    margin-bottom: 5px;
    font-weight: 600;
}

.founder-title {
    font-size: 18px;
    color: #8a6d3b;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-quote {
    font-style: italic;
    color: #a67c52;
    font-size: 18px;
    padding-left: 15px;
    border-left: 3px solid #a67c52;
    margin-top: 20px;
}

/* Mission & Values - Elegant Cards */
.mission, .values {
    text-align: center;
    padding: 60px 40px;
}

.mission h2, .values h2 {
    font-size: 32px;
    color: #a67c52;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.mission h2::after, .values h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #a67c52;
}

.mission p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Values - Light Cards */
.value-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value h3 {
    font-size: 22px;
    color: #a67c52;
    margin-bottom: 15px;
    font-weight: 600;
}

.value p {
    font-size: 18px;
    line-height: 1.6;
}

.highlight {
    color: #a67c52;
    font-weight: 500;
}

/* Footer - Soft and Elegant */
footer {
    background: #fff5e1;
    color: #8a6d3b;
    padding: 30px 20px;
    margin-top: 60px;
    font-family: 'Cormorant Garamond', serif;
}

/* Certification Section Styling to Match */
.certification-section {
    text-align: center;
    padding: 60px 40px;
}

.certification-section h2 {
    font-size: 32px;
    color: #a67c52;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.certification-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #a67c52;
}

.certifications {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.certification {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.certification img {
    width: auto;
    height: 70px;
}

.certification h3 {
    font-size: 22px;
    color: #a67c52;
    font-weight: 600;
}

.certification p {
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .about-container, .founders-section, .mission, .values, .process-section {
        padding: 40px 20px;
    }
    
    .about-content h2, .mission h2, .values h2, .section-title h2, .process-section h2 {
        font-size: 28px;
    }
    
    .about-content p, .mission p, .founder-content p, .process-intro {
        font-size: 16px;
    }
    
    .value, .certification, .step-content {
        padding: 20px;
    }
    
    .founder-card {
        padding: 20px;
        flex-direction: column;
    }
    
    .founder-image {
        margin-bottom: 20px;
    }
}

/* Animation for Page Elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-content, .about-image, .mission, .values, .value, .founders-section, .process-section, .certification {
    animation: fadeIn 0.6s ease-out forwards;
}

.value:nth-child(2), .process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.value:nth-child(3), .process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.value:nth-child(4), .process-step:nth-child(4) {
    animation-delay: 0.6s;
}

.process-step:nth-child(5) {
    animation-delay: 0.8s;
}