/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
#header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link.active {
    color: #e63946;
}

.nav-link:hover {
    color: #e63946;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #333;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e63946;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-values h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1d3557;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1d3557;
}

/* Our Vision Section */
.our-vision {
    padding: 80px 0;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.vision-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.vision-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #e63946;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .story-content,
    .vision-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-image,
    .vision-image {
        order: -1;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .social-icons {
        display: none;
    }
    
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero .tagline {
        font-size: 1.2rem;
    }
    
    .our-story,
    .our-values,
    .our-vision {
        padding: 60px 0;
    }
    
    .story-text h2,
    .our-values h2,
    .vision-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}