@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-dark: #0d452c;
    --primary-darker: #1a2e27;
    --accent-gold: linear-gradient(135deg, #2a2206 0%, #6f5a12 18%, #c9a227 35%, #fff6c3 50%, #d4af37 62%, #9c7c19 82%, #3f3308 100%);
    --accent-orange: #e67e22;
    --text-light: #cac2b0;
    --text-white: #ffffff;
    --background: #FCF5EB !important;

    --text-black: #000000;
    --card-transparent: #6e6b0900;
    --featured-color: linear-gradient( 135deg,#023a26 0%,#044A26 25%, #055327 45%,#1E7F52 65%, 80%,#055327 100% );
    --card-gradient: linear-gradient(135deg, #0d452c 0%, #1a2e27 100%);
    --header-gradient: linear-gradient(135deg, #0d452c 0%, #008e5c 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --simple-font: 'Poppins', sans-serif;
}

* {
    font-family: var(--simple-font);
}

@font-face {
    font-family: 'Amoresa';
    src: url('/assets/font/Amoresa.woff2') format('woff2'),
         url('/assets/font/Amoresa.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.justify-text {
    text-align: justify;
}
body p{
    text-align: justify;
    /* text-align: left; */
}
/* ═══════════════════════════════════════════════════════════════ */
/* ABOUT PAGE STYLES - MODERN & SOOTHING */
/* ═══════════════════════════════════════════════════════════════ */

.about-main-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--simple-font);
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION WITH PROFILE */
/* ═══════════════════════════════════════════════════════════════ */

.about-hero {
    /* min-height: 95vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    /* animation: fadeInUp 1s ease-out 0.3s both;
    background: linear-gradient(180deg, rgba(241, 196, 15, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%); */
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 100%;
    /* max-height: 80vh; */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 5rem; */
    /* align-items: center; */
    /* background: linear-gradient(135deg, rgb(13, 69, 44) 0%, rgba(26, 46, 39, 0.507) 100%); */
    /* border: 2px solid rgb(241, 196, 15); */
    /* border-radius: 40px; */
    /* padding: 2rem; */
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(241, 196, 15, 0.1); */
    overflow: hidden;
}



.hero-content {
    /* animation: fadeInUp 1s ease-out 0.3s both; */
    padding: 2rem;
    position: relative;
    max-height: inherit;
    overflow: auto;
    border: 4px solid transparent;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: var(--primary-dark) transparent;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.hero-content::-webkit-scrollbar {
    width: 5px;
}

.hero-content::-webkit-scrollbar-track {
    background: transparent;      /* track invisible */
}

.hero-content::-webkit-scrollbar-thumb {
    background-color: rgba(241, 196, 15, 0.75);
    border-radius: 10px;
}

.hero-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(241, 196, 15, 1);
}

.hero-title {
    font-size: 1.7rem;
    font-weight: 600;
    /* margin-bottom: 0.8rem; */
     /* background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange)); 
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    color: var(--primary-dark);
   
    letter-spacing: -1px;
    line-height: 1.1;
    /* font-family: var(--simple-font); */
    /* text-shadow: 0 10px 30px rgba(241, 196, 15, 0.1); */
    font-family: 'Amoresa', serif;
    /* filter:  drop-shadow(2px 2px 1px #736209); */
    /* text-shadow: 2px 2px 4px rgba(229, 255, 0, 0.3); */
}

.hero-subtitle {
    font-size: 1.6rem;
    /*  background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--simple-font);
}

.hero-description {
    /* font-size: 0.8rem; */
    /* font-size: clamp(0.75rem, 0.6rem + 0.1vw, 1rem); */
    font-size: 1vw;
    color: var(--text-black);
    margin-top: 1.5rem;
    /* margin-bottom: 2.5rem; */
    font-weight: 400;
    line-height: 1.9;
    font-family: var(--simple-font);
    padding-left: 0;
    border-left: 4px solid goldenrod;
    padding-left: 1.5rem;
    
}

.hero-description .quote-span{
    font-style: italic;
    /* font-weight: 600;
    font-size: 1.1rem; */
    color: var(--primary-darker);
}

.hero-social {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    margin-top: 3rem;
}
/* Hero Image Section */
.hero-image {
    /* animation: fadeInUp 1s ease-out 0.5s both; */
    /* perspective: 1000px; */
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-frame {
    position: relative;
    /* width: 60%; */
    /* aspect-ratio: 1/1; */
    aspect-ratio: 1 / 0.7;
    /* border-radius: 100%; */
    overflow: hidden;
    /* background: linear-gradient(135deg, #023a26 0%, #044A26 50%, #055327 100%); */
    /* border: 3px solid rgba(241, 196, 15, 0.3); */
    /* box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(241, 196, 15, 0.2),
    inset 0 1px 0 rgba(241, 196, 15, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
    /* backdrop-filter: blur(10px); */
}
.profile-frame img{
     object-fit: contain;   /* 🔑 prevents cropping */
    object-position: center;
}
.main-hero{
    aspect-ratio: 1/0.9 !important;

}

/* .profile-frame:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(241, 196, 15, 0.6);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(241, 196, 15, 0.35),
                inset 0 1px 0 rgba(241, 196, 15, 0.2);
} */

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* filter: brightness(1.05) contrast(1.1) saturate(1.05);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    z-index: 1;
}

.profile-frame:hover .profile-photo {
    /* filter: brightness(1.15) contrast(1.2) saturate(1.15); */
    /* transform: scale(1.08); */
}



@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* STATS SECTION */
/* ═══════════════════════════════════════════════════════════════ */

/* .stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(241, 196, 15, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.stats-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out both;
    font-family: var(--simple-font);
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.5s; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--simple-font);
}

.stat-label {
    font-size: 1.1rem;
    color: #cac2b0;
    font-weight: 500;
    font-family: var(--simple-font);
} */

/* ═══════════════════════════════════════════════════════════════ */
/* SECTION TITLE */
/* ═══════════════════════════════════════════════════════════════ */

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: var(--simple-font);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f1c40f, transparent);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* QUOTE SECTION */
/* ═══════════════════════════════════════════════════════════════ */

/* .quote-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
} */

/* .quote-container {
    max-width: 80%;
    margin: 0 auto;
    background: var(--card-gradient);
    border: 2px solid rgba(241, 196, 15, 0.3);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
} */

/* .quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f1c40f, transparent);
} */

.quote-icon {
    /* font-size: 2.5rem; */
    /* background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: var(--text-black);
    /* opacity: 0.4; */
    /* margin-bottom: 1.5rem; */
}

.quote-text {
    font-size: 1.1rem;
    color: var(--text-black);
    line-height: 2;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    font-family: var(--simple-font);
}

.quote-icon-right {
    /* font-size: 2.5rem; */
    /* background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: var(--text-black);
    /* opacity: 0.4; */
    /* margin-top: 1.5rem; */
    /* display: block; */
    text-align: right;
}

/* ═══════════════════════════════════════════════════════════════ */
/* JOURNEY SECTION */
/* ═══════════════════════════════════════════════════════════════ */

/* .journey-section {
    padding: 6rem 2rem;
}

.journey-container {
    max-width: 100%;
    margin: 0 auto;
}

.journey-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.journey-card {
    background: var(--card-gradient);
    border: 1px solid rgba(241, 196, 15, 0.2);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out both;
    position: relative;
    overflow: hidden;
    font-family: var(--simple-font);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f1c40f, #e67e22, transparent);
}

.journey-card:nth-child(1) { animation-delay: 0.2s; }
.journey-card:nth-child(2) { animation-delay: 0.3s; }
.journey-card:nth-child(3) { animation-delay: 0.4s; }
.journey-card:nth-child(4) { animation-delay: 0.5s; }

.journey-card:hover {
    transform: translateY(-15px);
    background: var(--featured-color);
    border-color: rgba(241, 196, 15, 0.4);
    box-shadow: 0 20px 60px rgba(241, 196, 15, 0.2);
}

.journey-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(241, 196, 15, 0.2);
    transition: all 0.3s ease;
}

.journey-card h3 {
      font-size: 1.4rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.journey-card p {
    font-size: 1.05rem;
    color: var(--text-white);
    line-height: 1.9;
    margin: 0;
    font-weight: 700;
    font-family: var(--simple-font);
} */
.journey-section {
     max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    /* align-items: center; */
    background: linear-gradient(135deg, rgb(13, 69, 44) 0%, rgba(26, 46, 39, 0.507) 100%);
    border: 2px solid rgb(241, 196, 15);
    /* border-radius: 40px; */
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(241, 196, 15, 0.1); */
    overflow: hidden;
}



/* ═══════════════════════════════════════════════════════════════ */
/* WHO SECTION */
/* ═══════════════════════════════════════════════════════════════ */
/* 
.who-section {
    padding: 6rem 2rem;
}

.who-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 92%;
    margin: 0 auto;
}

.who-card {
    background: var(--background);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(255, 215, 0, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    animation: fadeInUp 1s ease-out both;
    position: relative;
    overflow: hidden;
}

.who-card:nth-child(1) { animation-delay: 0.3s; }
.who-card:nth-child(2) { animation-delay: 0.5s; }

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--header-gradient);
}


.who-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.who-header i {
    font-size: 2.5rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.who-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0;
    font-family: var(--simple-font);
}

.who-card p {
    font-size: 1.05rem;
    color: var(--text-black);
    line-height: 1.9;
    font-weight: 300;
    font-family: var(--simple-font);
} */
.who-section {
  padding: 40px 20px;
}

.who-wrapper {
  max-width: 75vw;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: transparent;
  border-radius: 28px;
  padding: 40px;
  /* border: 3px solid #9aa0ff; */
  border: 5px solid goldenrod;
  
  /* border: 3px solid var(--primary-dark); */

  /* NEW SHADOW */
  /* box-shadow: inset 0px 0px 10px 4px var(--primary-dark); */
    box-shadow: inset 0px 0px 20px 2px #7a621a;
}
.who-header{
    display: flex;
    gap: 5%;
    justify-content: center;
    align-items: center; /* ✅ FIX */
    border-bottom: 2px solid var(--primary-dark);
    margin-bottom: 2%;
}

.who-header i {
    font-size: 1.8rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}
.who-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
    font-family: var(--simple-font);
}
/* .who-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--primary-dark);
} */

.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

/* Custom dot */
.who-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  /* color: #9aa0ff; */
  color: var(--card-gradient);
  font-size: 20px;
  line-height: 1.2;
}

.divider {
  width: 1px;
  /* background: #9aa0ff; */
  background: var(--primary-dark);
  margin: 0 24px;
}

/* Mobile */
@media (max-width: 768px) {
  .who-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .divider {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════ */
/* SKILLS SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.skills-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.skills-container {
    max-width: 100%;
    margin: 0 auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
}

.skill-number {
    width: 75px;
    height: 75px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 auto 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3);
    font-family: var(--simple-font);
}


/* ═══════════════════════════════════════════════════════════════ */
/* ATTITUDE SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.attitude-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.attitude-container {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.attitude-content {
    background: var(--card-gradient);
    border: 2px solid rgba(241, 196, 15, 0.3);
    border-radius: 30px;
    padding: 5rem 4rem;
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.attitude-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f1c40f, transparent);
}

.attitude-icon {
    font-size: 4rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.attitude-content p {
    font-size: 1.25rem;
    color: var(--text-white);
    line-height: 2;
    margin: 0;
    font-weight: 700;
    font-family: var(--simple-font);
}

/* ═══════════════════════════════════════════════════════════════ */
/* HOME CTA SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.home-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-wrapper {
    max-width: 80%;
    margin: 0 auto;
    background: var(--card-gradient);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 4rem 2rem;
    border-radius: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    color: #234031;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FDB931;
    color: #FDB931;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ANIMATIONS */
/* ═══════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════════ */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
        font-family: var(--simple-font);
    }

    .section-title {
        font-size: 2.3rem;
        font-family: var(--simple-font);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        font-family: var(--simple-font);
    }

    .stat-number {
        font-family: var(--simple-font);
    }

    .stat-label {
        font-family: var(--simple-font);
    }

    .tea-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .tea-value {
        font-family: var(--simple-font);
    }

    .tea-value h4 {
        font-family: var(--simple-font);
    }

    .tea-value p {
        font-family: var(--simple-font);
    }

    .hero-image {
        aspect-ratio: auto;
    }

    .profile-frame {
        aspect-ratio: 2/3;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        font-family: var(--simple-font);
    }

    .hero-subtitle {
        font-size: 1.2rem;
        font-family: var(--simple-font);
    }

    .hero-description {
        font-size: 1.05rem;
        font-family: var(--simple-font);
    }

    .hero-social {
        margin-top: 1.5rem;
    }

    .stats-section {
        padding: 3rem 1.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
        font-family: var(--simple-font);
    }

    .stat-number {
        font-size: 2.3rem;
        font-family: var(--simple-font);
    }

    .stat-label {
        font-family: var(--simple-font);
    }

    .quote-section {
        padding: 4rem 1.5rem;
    }

    .quote-container {
        padding: 2.5rem 1.5rem;
    }

    .quote-text {
        font-size: 1.25rem;
        line-height: 1.8;
        font-family: var(--simple-font);
    }

    .journey-section,
    .training-section,
    .approach-section,
    .attitude-section,
    .tea-ceremony-section,
    .about-cta {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        font-family: var(--simple-font);
    }

    .journey-content,
    .training-grid,
    .skills-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-intro {
        font-size: 1.1rem;
        font-family: var(--simple-font);
    }

    .journey-card,
    .training-card,
    .skill-card,
    .approach-card {
        padding: 2.5rem;
        font-family: var(--simple-font);
    }

    .journey-card h3,
    .training-card h3,
    .skill-card h3,
    .approach-card h3 {
        font-family: var(--simple-font);
    }

    .journey-card p,
    .training-card p,
    .skill-card p,
    .approach-card p {
        font-family: var(--simple-font);
    }

    .tea-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }

    .tea-value {
        padding: 1rem;
        font-family: var(--simple-font);
    }

    .tea-value h4 {
        font-family: var(--simple-font);
    }

    .tea-value p {
        font-family: var(--simple-font);
    }

    .tea-ceremony-content p {
        font-size: 1rem;
        line-height: 1.8;
        font-family: var(--simple-font);
    }

    .attitude-content {
        padding: 3rem 2rem;
    }

    .attitude-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .attitude-content p {
        font-size: 1.15rem;
        line-height: 1.8;
        font-family: var(--simple-font);
    }

    .about-cta .cta-content {
        padding: 3rem 2rem;
    }

    .about-cta h2 {
        font-size: 2rem;
        font-family: var(--simple-font);
    }

    .about-cta p {
        font-size: 1.1rem;
        font-family: var(--simple-font);
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        font-family: var(--simple-font);
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 1rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-family: var(--simple-font);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        font-family: var(--simple-font);
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        font-family: var(--simple-font);
    }

    .hero-social {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .profile-badge {
        font-family: var(--simple-font);
    }

    .stats-section {
        padding: 2.5rem 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem;
        font-family: var(--simple-font);
    }

    .stat-number {
        font-size: 2rem;
        font-family: var(--simple-font);
    }

    .stat-label {
        font-size: 0.9rem;
        font-family: var(--simple-font);
    }

    .quote-section {
        padding: 2.5rem 1rem;
    }

    .quote-container {
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .quote-icon,
    .quote-icon-right {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.05rem;
        line-height: 1.6;
        font-family: var(--simple-font);
    }

    .journey-section,
    .training-section,
    .approach-section,
    .attitude-section,
    .tea-ceremony-section,
    .about-cta {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
        font-family: var(--simple-font);
    }

    .journey-card,
    .training-card,
    .skill-card,
    .approach-card {
        padding: 2rem 1.5rem;
        font-family: var(--simple-font);
    }

    .journey-icon,
    .training-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .journey-card h3,
    .training-card h3,
    .skill-card h3,
    .approach-card h3 {
        font-size: 1.35rem;
        font-family: var(--simple-font);
    }

    .journey-card p,
    .training-card p,
    .skill-card p,
    .approach-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        font-family: var(--simple-font);
    }

    .skill-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-family: var(--simple-font);
    }

    .approach-step {
        font-size: 2.8rem;
        font-family: var(--simple-font);
    }

    .tea-values {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .tea-value {
        padding: 1rem;
        font-family: var(--simple-font);
    }

    .tea-value i {
        font-size: 2.3rem;
    }

    .tea-value h4 {
        font-size: 1.1rem;
        font-family: var(--simple-font);
    }

    .tea-value p {
        font-size: 0.9rem;
        font-family: var(--simple-font);
    }

    .tea-subtitle {
        font-family: var(--simple-font);
    }

    .tea-ceremony-content p {
        font-family: var(--simple-font);
    }

    .tea-impact {
        font-family: var(--simple-font);
    }

    .section-intro {
        font-size: 1rem;
        font-family: var(--simple-font);
    }

    .attitude-content {
        padding: 2rem 1.5rem;
    }

    .attitude-icon {
        font-size: 2.5rem;
    }

    .attitude-content p {
        font-size: 1.05rem;
        line-height: 1.6;
        font-family: var(--simple-font);
    }

    .about-cta .cta-content {
        padding: 2rem 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-family: var(--simple-font);
    }

    .about-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
        font-family: var(--simple-font);
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        justify-content: center;
        font-family: var(--simple-font);
    }

    .cta-button.secondary {
        font-family: var(--simple-font);
    }
}