body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Header Genel Stil */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1abc9c;
}

header .menu-toggle {
    display: none; /* Masaüstünde gizlenir */
    font-size: 1.5rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Navigation Menu */
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

header nav ul li a:hover {
    background-color: #1abc9c;
    transform: scale(1.05);
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header .menu-toggle {
        display: block; /* Hamburger menüsü görünür */
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
        display: none; /* Varsayılan olarak gizli */
        width: 100%;
        background-color: #2c3e50;
        padding: 10px 0;
    }

    header nav ul.open {
        display: flex; /* Toggle ile menü görünür */
    }
}



.intro {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #fff;
}

.intro img {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intro p {
    max-width: 600px;
    margin-left: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #ecf0f1;
}

.gallery-item {
    position: relative;
    margin: 15px;
    width: calc(25% - 30px);
    box-sizing: border-box;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    background: #1abc9c;
    padding: 10px 20px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Footer styling */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 30px);
    }
    .intro {
        flex-direction: column;
        align-items: flex-start;
    }
    .intro img {
        margin-bottom: 20px;
    }
    .intro p {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: calc(100% - 30px);
    }
    .slider {
        height: 200px;
        font-size: 18px;
    }
    .intro {
        padding: 20px;
    }
}
/* Showcase Alanı */
.showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.showcase-text h1 {
    font-size: 2rem;
    color: #0a1931;
    margin-bottom: 10px;
    font-weight: 700;
}

.showcase-text p {
    font-size: 1.2rem;
    color: red;
    margin-bottom: 30px;
}

.showcase-images {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; /* Mobil uyum için */
}

.image-box {
    position: relative;
    text-align: center;
    max-width: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-box:hover img {
    transform: scale(1.1); /* Hover efektinde büyütme */
}

.image-box:hover {
    transform: translateY(-5px);
}

/* Overlay Efekti */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Koyu transparan arkaplan */
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.image-box:hover .overlay {
    opacity: 1;
}

/* Arama Butonu */
.search-icon {
    color: white;
    font-size: 2rem;
    background: #1abc9c;
    padding: 10px 20px;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.image-box:hover .search-icon {
    transform: scale(1.2); /* Hover efektinde büyütme */
    background: #16a085; /* Hafif renk değişimi */
}

.image-box h3 {
    font-size: 1.2rem;
    color: #0a1931;
    font-weight: 600;
    margin-top: 10px;
}







.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    padding: 40px 20px;
}

.contact-container {
    display: flex;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.contact-form, .contact-info {
    flex: 1;
    padding: 30px;
}

.contact-form h3, .contact-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}




.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        padding: 20px;
    }
}



