/* About.css - ASHIVA Hakkımızda Sayfası Özel Stilleri */

/* Base Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Current Menu Link Style */
.menu-link.current {
    color: #215020 !important;
    font-weight: 600;
}

.header:hover .menu-link.current,
.header.scrolled .menu-link.current {
    color: #215020 !important;
}

/* About Hero Section */
.about-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) sepia(20%) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD700;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Origin Section */
.origin-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.origin-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.origin-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(30%) sepia(10%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.decade-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #215020;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.decade-number {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.decade-label {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.origin-story {
    padding: 2rem 0;
}

.story-intro {
    margin-bottom: 3rem;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #215020;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.story-lead {
    font-size: 1.3rem;
    color: #215020;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.story-highlight {
    background: rgba(33, 80, 32, 0.05);
    border-left: 4px solid #215020;
    border-radius: 0 10px 10px 0;
    padding: 2rem;
    margin: 1rem 0;
}

.story-highlight blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #215020;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
}

.story-highlight blockquote::before,
.story-highlight blockquote::after {
    content: '"';
    font-size: 2rem;
    color: rgba(33, 80, 32, 0.3);
    font-family: serif;
    position: absolute;
}

.story-highlight blockquote::before {
    top: -0.5rem;
    left: -1rem;
}

.story-highlight blockquote::after {
    bottom: -1rem;
    right: -1rem;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #215020 0%, #2d6b2d 100%);
    color: white;
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.values-declaration {
    max-width: 1200px;
    margin: 0 auto;
}

.declaration-header {
    text-align: center;
    margin-bottom: 4rem;
}

.declaration-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFD700;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
    margin-bottom: 2rem;
}

.icon-symbol {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.value-content h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: #fff;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #215020;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.philosophy-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-paragraph p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.philosophy-highlight {
    background: rgba(33, 80, 32, 0.1);
    border: 1px solid rgba(33, 80, 32, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.philosophy-highlight strong {
    font-size: 1.3rem;
    color: #215020;
    line-height: 1.6;
    display: block;
}

.philosophy-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.overlay-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overlay-text span {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Heritage Section */
.heritage-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.heritage-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.heritage-card:hover {
    transform: translateY(-10px);
    border-color: rgba(33, 80, 32, 0.2);
    box-shadow: 0 25px 60px rgba(33, 80, 32, 0.15);
}

.heritage-card.featured {
    border-color: rgba(33, 80, 32, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.heritage-card.featured:hover {
    border-color: rgba(33, 80, 32, 0.5);
    box-shadow: 0 25px 60px rgba(33, 80, 32, 0.2);
}

.heritage-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(33, 80, 32, 0.3));
    transition: all 0.4s ease;
}

.heritage-card:hover .heritage-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(33, 80, 32, 0.5));
}

.heritage-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #215020;
    margin-bottom: 1.5rem;
}

.heritage-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Journey Section */
.journey-section {
    padding: 8rem 0;
    background: #fff;
}

.journey-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #215020;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.journey-statement {
    margin-bottom: 5rem;
}

.journey-statement p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.timeline-item {
    background: white;
    border: 2px solid rgba(33, 80, 32, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 80, 32, 0.3);
    box-shadow: 0 20px 40px rgba(33, 80, 32, 0.15);
}

.timeline-item.current {
    background: linear-gradient(135deg, #215020 0%, #2d6b2d 100%);
    color: white;
    border-color: #215020;
}

.timeline-item.current:hover {
    background: linear-gradient(135deg, #2d6b2d 0%, #215020 100%);
}

.timeline-period {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #215020;
}

.timeline-item.current .timeline-period {
    color: #FFD700;
}

.timeline-content p {
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
    color: #666;
}

.timeline-item.current .timeline-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Final Message Section */
.final-message-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.final-message-content {
    position: relative;
}

.message-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.message-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.message-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 5rem 2rem;
}

.message-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.message-statements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.statement-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.statement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.statement-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.statement-item p {
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    text-align: left;
}

.statement-item strong {
    color: #FFD700;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #215020;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #215020, #2d6b2d);
    color: white;
    box-shadow: 0 10px 30px rgba(33, 80, 32, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(45deg, #2d6b2d, #215020);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 80, 32, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: #215020;
    border-color: rgba(33, 80, 32, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(33, 80, 32, 0.1);
    border-color: #215020;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 80, 32, 0.2);
}

/* Mobile Menu Current State for About */
.mobile-simple-link.current {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    font-weight: 600;
    border-left: 4px solid #215020;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .origin-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-image {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .about-hero .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .story-title,
    .philosophy-title,
    .journey-title,
    .message-title,
    .cta-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .heritage-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .about-hero {
        height: 80vh;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .origin-section,
    .values-section,
    .philosophy-section,
    .heritage-section,
    .journey-section,
    .final-message-section,
    .contact-cta-section {
        padding: 4rem 0;
    }

    .origin-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .origin-image img {
        height: 400px;
    }

    .values-grid,
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-item,
    .heritage-card {
        padding: 2rem;
    }

    .statement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .statement-item p {
        text-align: center;
    }

    .message-text {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }

    .story-title,
    .philosophy-title,
    .journey-title,
    .message-title,
    .cta-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero-badge {
        padding: 0.6rem 1.5rem;
    }

    .badge-year {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .origin-image img {
        height: 300px;
    }

    .story-highlight,
    .philosophy-highlight,
    .value-item,
    .heritage-card,
    .timeline-item {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .decade-badge {
        padding: 0.8rem 1.5rem;
    }

    .decade-number {
        font-size: 2rem;
    }

    .decade-label {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}