/* ====== BASE ====== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #F5EFE6;
    color: #3A2F2F;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url("aboutspic.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 8%;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(43,31,26,0.78), rgba(43,31,26,0.40));
}

.hero-content {
    position: relative;
    max-width: 520px;
    z-index: 2;
    margin-top: -100px; 
}

.hero-content h1 {
    font-size: 42px;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-weight: 400;     
    font-style: italic;   
}

.hero-read {
    display: inline-block;
    color: #b7ada0;
    cursor: pointer;
}

#heroText {
    color: #f8eee3;   
    font-size: 16px;
}

.cta {
    background: #8B5E3C;
    border: none;
    padding: 12px 25px;
    color: #fff;
    border-radius: 6px;
    margin-top: 12px;
    cursor: pointer;
}

/* ===== APPROACH ===== */
.approach {
    padding: 90px 10%;
    text-align: center;
}

.card {
    background: #fff;
    padding: 30px;
    margin: 25px auto;
    width: 60%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(-100px);
    transition: 0.8s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOUNDER SECTION (EDITORIAL STYLE) ===== */
.founder {
    background: #2B1F1A;
    color: #F5EFE6;
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

.founder-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px; 
}

.founder-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-image img {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    border-radius: 200px 200px 0 0; 
    border: 4px solid #D4A373;
    border-bottom: none; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.founder-content {
    flex: 1;
    text-align: left;
}

.founder-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #D4A373; 
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 500;
}

.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0 0 25px 0;
    padding-left: 20px;
    border-left: 3px solid #D4A373; 
}

.founder-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #e3ddd4;
    margin-bottom: 15px;
}

/* ===== MISSION VISION ===== */
.mission-vision {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 100px 8%;
  background: #F5EFE6;
  flex-wrap: wrap;
}

.mv-card {
  background: #ffffff;
  width: 420px;
  padding: 45px 35px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.mv-card h3 {
  color: #3A2F2F;
  font-size: 28px;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
  line-height: 1.7;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #D4A373, #b8935f, #8B5E3C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.3s;
}

.mv-card:hover::before {
  opacity: 1;
}

/* ===== FAQ ===== */
.faq {
    padding: 90px 10%;
}

.faq-item {
    margin-bottom: 25px;
}

.question {
    background: #D8CFC2;
    border: 1px solid #baa48b;
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease; 
}

.question:hover {
    background: #e3ddd4;       
    border-color: #8B5E3C;     
    box-shadow: 0 5px 15px rgba(139, 94, 60, 0.08); 
}

.question span {
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 600;
}

.question:hover span {
    transform: scale(1.3);     
    color: #8B5E3C;            
}

.answer {
    display: none;
    background: #fff;
    padding: 22px 30px;
    border: 1px solid #c0a78b;
    border-top: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .card { width: 90%; }
    .mission-vision { flex-direction: column; }
}

/* ========================================= */
/* 🔥 MOBILE RESPONSIVE FIXES (480px, 380px, 320px) */
/* ========================================= */

@media (max-width: 480px) {
    /* 1. HERO FIX */
    .hero {
        padding: 80px 20px 60px;
        height: auto;
        min-height: 100vh;
        justify-content: center;
        /* 🔥 THIS FIXES THE IMAGE CUTTING OFF */
        background-position: right center !important; 
    }
    .hero-content {
        margin-top: 0; 
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 34px; 
        line-height: 1.2;
        white-space: normal; 
        text-align: left;
    }
    #heroText {
        font-size: 15px;
    }
    .cta {
        width: 100%; 
        text-align: center;
    }

    /* 2. APPROACH CARDS FIX */
    .approach {
        padding: 60px 15px;
    }
    .card {
        width: 90%;
        margin: 20px auto; 
        padding: 25px 20px;
        box-sizing: border-box; 
    }

    /* 3. FOUNDER'S VISION FIX */
    .founder {
        padding: 60px 20px;
    }
    .founder-wrapper {
        flex-direction: column; 
        gap: 30px;
        text-align: center;
    }
    .founder-content {
        text-align: center; 
    }
    .founder-image img {
        width: 80%; 
        max-width: 250px;
        height: auto;
        border-radius: 150px 150px 0 0; 
        margin: 0 auto; 
    }
    .founder-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .founder-quote {
        font-size: 22px;
        padding: 20px 0;
        border-left: none; 
        border-top: 2px solid #D4A373; 
        border-bottom: 2px solid #D4A373; 
    }
    .founder-text {
        font-size: 15px;
        line-height: 1.6;
    }

    /* 4. MISSION VISION MOBILE FIX */
    .mv-card {
        width: 90%;
        padding: 30px 20px;
        box-sizing: border-box;
    }
}

/* 🔥 Small Mobile (380px) */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 30px; }
    .founder-title { font-size: 28px; }
    .founder-quote { font-size: 20px; }
    .mv-card { width: 92%; padding: 25px 18px; }
    .mv-card h3 { font-size: 22px; }
}

/* 🔥 Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .hero-content h1 { font-size: 26px; }
    .founder-title { font-size: 24px; }
    .founder-quote { font-size: 18px; }
    .card { width: 95%; padding: 20px 15px; }
    .mv-card { width: 94%; padding: 22px 15px; }
    .mv-card h3 { font-size: 20px; }
    .mv-card p { font-size: 13px; }
}