/*
   ========================================
   About Page - Ömer Haluk Demirhan
   ========================================
*/

/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    color: var(--dark-color);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.page-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(102, 0, 255, 0.3);
    z-index: -1;
    transform: translateX(-5px) translateY(5px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: all var(--transition-fast) ease;
}

.breadcrumb a:hover {
    transform: scale(1.05);
}

.separator {
    margin: 0 1rem;
    color: var(--secondary-color);
}

.current {
    color: var(--dark-color);
    font-weight: 500;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
    animation: floatAround 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    transform: rotate(-15deg);
    animation-delay: -5s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 30%;
    transform: rotate(45deg);
    animation-delay: -3s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(10deg);
    }
    50% {
        transform: translate(0, 15px) rotate(25deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(5deg);
    }
}

/* About Content */
.about-content {
    padding: 10rem 0;
}

.about-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-photo {
    position: relative;
}

.photo-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.photo-inner {
    position: relative;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: all 0.8s ease;
}

.photo-frame:hover .profile-img {
    transform: scale(1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(102, 0, 255, 0.2), transparent);
}

.frame-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--primary-color);
    border-radius: 30px;
    opacity: 0.3;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

.social-icons {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all var(--transition-medium) ease;
    box-shadow: var(--shadow-md);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.section-intro {
    margin-bottom: 3rem;
}

.subtitle {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.section-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.title-decoration {
    width: 5rem;
    height: 4px;
    background: var(--gradient-primary);
    margin-bottom: 3rem;
    border-radius: 2px;
}

.bio-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.personal-info {
    margin: 4rem 0;
    background: rgba(102, 0, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
}

.info-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-item {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-color);
}

.availability {
    color: #00cc66;
    position: relative;
    padding-left: 1.5rem;
}

.availability::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #00cc66;
    border-radius: 50%;
    transform: translateY(-50%);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
}

/* My Approach Section */
.approach-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, rgba(102, 0, 255, 0.03) 0%, rgba(0, 204, 255, 0.03) 100%);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.approach-card {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium) ease;
    overflow: hidden;
}

.approach-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(102, 0, 255, 0.1);
    line-height: 1;
}

.approach-icon {
    width: 8rem;
    height: 8rem;
    background: rgba(102, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    transition: all var(--transition-medium) ease;
}

.approach-card:hover .approach-icon {
    background: var(--gradient-primary);
}

.approach-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: all var(--transition-medium) ease;
}

.approach-card:hover .approach-icon i {
    color: white;
}

.approach-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.approach-card p {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 10rem 0;
}

.testimonials-slider {
    position: relative;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 5rem 4rem;
    box-shadow: var(--shadow-md);
    position: relative;
    display: none;
}

.testimonial-card:first-child {
    display: block;
}

.quote-icon {
    position: absolute;
    top: 3rem;
    left: 4rem;
    font-size: 3rem;
    color: rgba(102, 0, 255, 0.2);
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    border: 3px solid rgba(102, 0, 255, 0.1);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.author-info span {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.prev-btn, .next-btn {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-color);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast) ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Call to Action Section */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: floatDot 10s infinite linear;
}

.dot-1 {
    top: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation-duration: 15s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    width: 30px;
    height: 30px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.dot-3 {
    bottom: 20%;
    left: 20%;
    width: 40px;
    height: 40px;
    animation-duration: 18s;
    animation-delay: -10s;
}

.dot-4 {
    top: 40%;
    right: 30%;
    width: 25px;
    height: 25px;
    animation-duration: 12s;
    animation-delay: -7s;
}

@keyframes floatDot {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.3;
    }
    50% {
        transform: translate(100px, 0) scale(1);
        opacity: 0.2;
    }
    75% {
        transform: translate(50px, 30px) scale(0.8);
        opacity: 0.1;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-grid {
        gap: 4rem;
    }
}

@media (max-width: 990px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .about-photo {
        max-width: 500px;
        margin: 0 auto;
    }

    .info-row {
        flex-direction: column;
        gap: 2rem;
    }

    .approach-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 4rem;
    }

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

    .approach-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        padding: 4rem 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 3.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
} 