/* 
   =========================================
   ABOUT US - PREMIUM LUXURY THEME
   ========================================= 
*/

:root {
    --gold-primary: #d4a574;
    --gold-dark: #c19163;
    --gold-soft: #fdfaf7;
    --text-deep: #1a1a1a;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border-light: rgba(0,0,0,0.06);
}

/* BASE STYLES */
.about-premium-page {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-deep);
}

/* PREMIUM HERO SECTION */
.about-hero-premium {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../Ecommerce Website/img/about_hero.png');
    background-size: cover;
    background-position: center;
    padding: 160px 0 120px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-hero-premium h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.about-hero-premium p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

/* STORY SECTION */
.about-story-rich {
    padding: 120px 0;
    background: var(--gold-soft);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual-side {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.story-visual-side img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-grid:hover .story-visual-side img {
    transform: scale(1.05);
}

.story-text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 30px;
}

.story-text-side p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.9;
}

/* VALUES SECTION - GLASSMORPHISM */
.about-values-premium {
    padding: 120px 0;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 16px;
}

.section-title-center p {
    font-size: 18px;
    color: var(--text-muted);
}

.values-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card-premium {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--gold-primary);
}

.value-icon-box {
    width: 64px;
    height: 64px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-primary);
    margin: 0 auto 24px;
    transition: all 0.4s;
}

.value-card-premium:hover .value-icon-box {
    background: var(--gold-primary);
    color: var(--white);
}

.value-card-premium h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 16px;
}

/* STATS SECTION */
.about-stats-lux {
    padding: 100px 0;
    background: var(--gold-primary);
    color: var(--white);
}

.stats-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-box-large .stat-num {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    display: block;
}

.stat-box-large .stat-lab {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* TEAM SECTION */
.about-team-lux {
    padding: 120px 0;
    background: var(--white);
}

.team-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card-minimal {
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
}

.team-card-minimal .member-img-wrap {
    height: 380px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 24px;
    position: relative;
    background: var(--gold-soft);
}

.team-card-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-minimal:hover img {
    transform: scale(1.05);
}

.team-card-minimal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 4px;
}

.team-card-minimal span {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA - BRAND ESSENCE */
.about-cta-premium {
    padding: 140px 0;
    text-align: center;
    background: var(--gold-soft);
}

.cta-box-lux {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-lux h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-btn-lux {
    padding: 20px 50px;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-btn-lux:hover {
    background: var(--gold-dark);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 60px; }
    .story-visual-side { order: -1; }
    .stats-grid-clean { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-hero-premium { padding: 100px 0 80px; }
    .section-title-center h2, .about-hero-premium h1 { font-size: 36px; }
    .about-story-rich, .about-values-premium, .about-team-lux, .about-cta-premium { padding: 80px 0; }
}
