/* Hakkimizda Page Styles */

/* Scroll padding for fixed navbar */
html {
    scroll-padding-top: 150px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*min-height: 100vh;*/
}

.hero-content {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .hero-content.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Logo */
.page-logo {
    margin-bottom: 40px;
    opacity: 1;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.page-logo.animate-in {
    opacity: 1;
    transform: scale(1);
}

.logo-image {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Page Title */
.page-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #032D63;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-title.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Slogan */
.page-slogan {
    margin-top: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-slogan.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.slogan-text {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #032D63;
    display: block;
    line-height: 1.3;
}

.slogan-highlight {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #8AB84F;
    display: block;
    line-height: 1.3;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.scroll-arrow.animate-in {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: white;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-text {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.content-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/*.content-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #032D63 0%, #052331 100%);
    transition: left 0.4s ease;
    z-index: -1;
}*/

.content-text p:hover::before {
    left: 0;
}

/*.content-text p:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}*/

.content-text p:last-child {
    margin-bottom: 0;
}



/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
        min-height: 50vh;
    }
    
    .logo-image {
        max-height: 80px;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .content-text p {
        font-size: 16px;
        text-align: left;
    }
    
    .principles-section {
        padding: 60px 0;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principle-item {
        padding: 25px;
    }
    
    .principle-name {
        font-size: 18px;
    }
    
    .principle-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .content-container,
    .principles-container {
        padding: 0 15px;
    }
    
    .principle-item {
        padding: 20px;
    }
}
