/* About Page Styles */

/* Hero Section */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)), 
                url('https://images.unsplash.com/photo-1559496417-e7f25cb247cd?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.6);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-style: italic;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.7;
    z-index: 2;
}

.scroll-mouse {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* Main Content */
.about-main {
    padding-top: 0;
}

.about-main .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    min-height: auto !important;
    display: block !important;
    flex-direction: initial !important;
    justify-content: initial !important;
    align-items: initial !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: #d4a574;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-main .section-title {
    font-size: 2.5rem !important;
    color: #2c1810 !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    text-transform: none !important;
}

.about-main .section-title span {
    color: #d4a574 !important;
}

.about-main .section-header.centered .section-title {
    text-align: center !important;
}

.about-main .section-description {
    font-size: 1.1rem !important;
    color: #6b4423 !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Our Story Section */
.about-main .our-story {
    padding: 100px 0 !important;
    background: #f8f5f0 !important;
}

.about-main .our-story .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

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

.story-content {
    padding-right: 40px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 25px;
}

.story-text strong {
    color: #2c1810;
    font-weight: 600;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #d4a574;
    width: 30px;
    text-align: center;
}

.highlight-item span {
    font-weight: 600;
    color: #2c1810;
}

.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #d4a574;
}

.overlay-content p {
    margin-bottom: 10px;
    font-style: italic;
}

.overlay-content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Our Values Section */
.about-main .our-values {
    padding: 100px 0 !important;
    background: white !important;
}

.about-main .our-values .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.about-main .values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 60px !important;
}

.about-main .value-card {
    background: #f8f5f0 !important;
    padding: 40px 30px !important;
    border-radius: 15px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #d4a574;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #2c1810;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card p {
    color: #6b4423;
    line-height: 1.6;
    font-size: 1rem;
}

/* Timeline Section - Simplified */
.timeline-section {
    padding: 100px 0;
    background: #2c1810;
    color: white;
}

.timeline-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-section .section-title {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.timeline-section .section-title span {
    color: #d4a574;
}

.timeline-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4a574;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background: #d4a574;
    color: #2c1810;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    border: 5px solid #2c1810;
    box-shadow: 0 0 0 5px #d4a574;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    text-align: right;
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
    text-align: left;
    margin-left: 55%;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    color: #d4a574;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

/* Team Section */
.about-main .team-section {
    padding: 100px 0 !important;
    background: #f8f5f0 !important;
}

.about-main .team-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.about-main .team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 60px !important;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-role {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-bio {
    color: #6b4423;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #f8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c1810;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.about-main .about-cta {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 100%) !important;
    color: white !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-main .about-cta .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23d4a574" opacity="0.3"/><circle cx="80" cy="80" r="1" fill="%23d4a574" opacity="0.3"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4a574;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: #d4a574;
    color: white;
}

.primary-btn:hover {
    background: #b8956a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #d4a574;
    border-color: #d4a574;
}

.secondary-btn:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        float: none;
        width: calc(100% - 50px);
        margin-left: 110px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -30px;
        right: auto;
        border-right-color: rgba(255, 255, 255, 0.1);
        border-left-color: transparent;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 60px auto 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .our-story,
    .our-values,
    .timeline-section,
    .team-section,
    .about-cta {
        padding: 60px 0;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
