/* About Page Styles - Import main.css for consistency */
@import url('main.css');

/* Active nav link */
.navbar-menu li a.active {
    color: var(--accent-color);
}

.navbar-menu li a.active::after {
    width: 100%;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Section Styles */
.about-section {
    padding: 4rem 2rem;
}

.about-section.alt-bg {
    background-color: rgba(44, 44, 44, 0.3);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.header-line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* Story Section */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offering-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.offering-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.offering-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offering-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}

.offering-card h3,
.offering-card p {
    position: relative;
    z-index: 1;
}

.offering-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #fff; /* readable over image */
}

.offering-card p {
    color: #f2f2f2; /* readable over image */
    line-height: 1.6;
}

/* Mission Section */
.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.mission-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.mission-list li strong {
    color: var(--accent-color);
}

/* Team Section */
.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.owner-profile {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.profile-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.profile-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.profile-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Section */
.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.vision-text strong {
    color: var(--accent-color);
}

/* CTA Box */
.cta-box {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: var(--primary-bg);
    border-top: 2px solid var(--border-color);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-placeholder {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-hero {
        padding: 4rem 1.5rem 3rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .owner-profile {
        padding: 2rem;
    }

    .cta-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-hero {
        padding: 3rem 1rem 2rem;
    }

    .about-section {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .story-text p,
    .mission-text p,
    .vision-text p {
        font-size: 1rem;
        text-align: left;
    }

    .offering-card,
    .owner-profile,
    .cta-box {
        padding: 1.5rem;
    }

    .profile-info h3 {
        font-size: 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .vision-text h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
