/* About Page Specific Styles - Inherits base styles from style.css */


/* Enhanced Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 199, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 199, 165, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 6s infinite;
}

@keyframes float {

    0%,
    100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero-title {
    color: var(--color-white);
    font-size: 4.5rem;
    line-height: 1.1;
    padding-bottom: 0.2em;
    /* Prevents descenders like 'g' from clipping */
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta {
    position: relative;
    z-index: 10;
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.hero-button::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.6s;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 199, 165, 0.3);
    border-color: var(--color-gold);
}

.hero-button:hover::before {
    left: 100%;
}

/* Enhanced Our Story Section */
.our-story {
    padding: 12rem 4rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-offwhite) 100%);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 199, 165, 0.05) 0%, transparent 70%);
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.our-story-content {
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.section-subtitle {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    line-height: 1.2;
}

.our-story-text {
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--color-charcoal);
    position: relative;
    padding-left: 2rem;
}

.our-story-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
}

.our-story-text strong {
    color: var(--color-gold);
    font-weight: 500;
}

.our-story-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 20px;
    overflow: hidden;
}

.our-story-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.our-story-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    bottom: 2rem;
    right: 2rem;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    pointer-events: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.our-story-image:hover .image-overlay {
    top: 1rem;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    opacity: 1;
}

/* Enhanced Philosophy Section */
.philosophy {
    padding: 12rem 4rem;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 199, 165, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.philosophy-content {
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.philosophy-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-title::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.philosophy-quote {
    font-size: 2.2rem;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--color-gold);
    position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 199, 165, 0.3);
    position: absolute;
}

.philosophy-quote::before {
    top: -1rem;
    left: -2rem;
}

.philosophy-quote::after {
    bottom: -2rem;
    right: -2rem;
}

.philosophy-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Enhanced Founder Section */
.founder {
    padding: 12rem 4rem;
    background: linear-gradient(135deg, var(--color-offwhite) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 199, 165, 0.05) 0%, transparent 70%);
}

.founder-container {
    max-width: 900px;
    margin: 0 auto;
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
    align-items: unset;
    position: relative;
    z-index: 1;
}

.founder-content {
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.founder-note {
    position: relative;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 199, 165, 0.2);
    border-radius: 20px;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.founder-note:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-note::before {
    content: '“';
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 8rem;
    color: rgba(212, 199, 165, 0.2);
    line-height: 1;
}

.founder-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-charcoal);
}

.founder-name {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--color-black);
}

.founder-position {
    font-size: 1rem;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

/* Enhanced Team Section */
.team {
    padding: 12rem 4rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-offwhite) 100%);
    position: relative;
    overflow: hidden;
}

.team::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(212, 199, 165, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: 6rem;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    color: var(--color-black);
}

.team-title::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.team-subtitle {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: var(--color-charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-image {
    width: 100%;
    height: 600px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 20px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .our-story-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .our-story-image {
        min-height: 400px;
        order: -1;
    }

    .founder-note {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-title,
    .philosophy-title {
        font-size: 2.8rem;
    }

    .our-story,
    .philosophy,
    .founder,
    .team {
        padding: 6rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .philosophy-quote {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .philosophy-quote::before,
    .philosophy-quote::after {
        font-size: 2rem;
    }

    .our-story-text {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {

    .hero-title,
    .philosophy-title {
        font-size: 2.2rem;
    }

    .team-header {
        margin-bottom: 3rem;
    }
}