/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif; /* Daha modern bir font */
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 10px;
    border-bottom: 3px solid #77aaff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}

    /* Header Container */
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Logo */
    header .logo img {
        height: 70px;
        width: auto;
        transition: transform 0.3s ease;
    }

        header .logo img:hover {
            transform: scale(1.1);
        }

    /* Navigation */
    header nav {
        display: flex;
        align-items: center;
    }

        /* Menü Listesi */
        header nav ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            align-items: center;
        }

            header nav ul li {
                margin-left: 20px;
            }

                header nav ul li a {
                    color: #fff;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 16px;
                    transition: color 0.3s ease;
                }

                    header nav ul li a:hover {
                        color: #77aaff;
                    }

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    display: inline-block;
    transition: transform 0.3s;
}

    .icon-link:hover {
        transform: translateY(-3px);
    }

.icon {
    width: 24px;
    height: 24px;
}

/* Telefon Butonu */
.phone-button a {
    display: inline-flex;
    align-items: center;
    background-color: #ff4d4d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .phone-button a:hover {
        background-color: #e60000;
        transform: translateY(-3px);
    }

    .phone-button a i {
        margin-right: 8px;
        font-size: 1.2em;
    }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Logo Boyutu Küçültüldü */
    header .logo img {
        height: 50px;
    }

    /* Menü Mobilde Gizleniyor */
    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 10px 0;
        text-align: center;
    }

        header nav ul li {
            margin: 10px 0;
        }

    /* Menü Toggle Butonu */
    .menu-toggle {
        display: none;
        font-size: 26px;
        cursor: pointer;
        color: #fff;
    }

    @media (max-width: 768px) {
        .menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: #1a1a1a;
            text-align: center;
        }

            .menu.active {
                display: flex;
            }

        .menu-toggle {
            display: block;
            font-size: 26px;
            cursor: pointer;
            color: #fff;
        }
    }

    /* Header Icons ve Telefon Butonu Küçültüldü */
    .header-icons {
        gap: 10px;
    }

    .phone-button a {
        padding: 6px 12px;
        font-size: 0.9em;
    }
}


/* Hero Section */
.hero {
    background: url('images/a1.jpg') no-repeat center center;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100vh; /* Ekran yüksekliği kadar alan kaplaması için */
    color: #fff;
    padding: 200px 0; /* Daha geniş bir padding */
    text-align: center;
    position: relative;
    min-height: 50vh; /* Ekranın %70'i kadar yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6); /* Daha koyu bir overlay */
    }

    .hero .container {
        position: relative;
        z-index: 1;
        animation: fadeIn 1.5s ease-in-out;
    }

    .hero h2 {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hero p {
        font-size: 1.5em;
        margin-bottom: 40px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    .hero .btn {
        background: #77aaff;
        color: #fff;
        padding: 15px 40px;
        text-decoration: none;
        border-radius: 30px; /* Yuvarlak köşeler */
        font-size: 1.2em;
        font-weight: 600;
        transition: background 0.3s ease, transform 0.3s ease;
    }

        .hero .btn:hover {
            background: #5599ff;
            transform: translateY(-5px); /* Butona hover efekti */
        }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil cihazlar için farklı arka plan resmi */
@media (max-width: 768px) {
    .hero {
        background: url('images/logo2.jpeg') no-repeat center center;
        background-size: cover;
    }
}

/* Galeri Section */
.gallery {
    padding: 80px 0;
    background: #fff;
}

    .gallery h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.8em;
        color: #1a1a1a;
        font-weight: 700;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        display: block;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 20px;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item .overlay h3 {
        margin: 0;
        font-size: 1.5em;
        font-weight: 600;
    }

    .gallery-item .overlay p {
        margin: 10px 0 0;
        font-size: 1em;
    }

/* Hakkımızda Section */
.about {
    padding: 100px 0;
    background-image: url('images/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    text-align: left;
}

    .about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .about .container {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 0 auto;
    }

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    width: 55%;
    animation: fadeInUp 1.5s ease-in-out;
}

    .about-text h2 {
        font-size: 2.8em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .about-text p {
        font-size: 1.2em;
        line-height: 1.8;
    }

.about-image {
    width: 40%;
    text-align: center;
}

    .about-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 15px;
        animation: fadeInRight 1.5s ease-in-out;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* İletişim Bölümü */
.contact {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
}

    .contact h2 {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #1a1a1a;
        font-weight: 700;
    }

    .contact .subtitle {
        font-size: 1.2em;
        color: #555;
        margin-bottom: 40px;
    }

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .contact-info ul li {
            margin-bottom: 20px;
            font-size: 1.1em;
            color: #555;
            display: flex;
            align-items: center;
        }

            .contact-info ul li i {
                margin-right: 15px;
                color: #77aaff;
                font-size: 1.5em;
            }

            .contact-info ul li span {
                flex: 1;
            }

.social-media {
    margin-top: 30px;
}

    .social-media a {
        display: inline-block;
        margin-right: 15px;
        color: #77aaff;
        font-size: 1.5em;
        transition: color 0.3s ease;
    }

        .social-media a:hover {
            color: #5599ff;
        }

.contact-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 1em;
        transition: border-color 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #77aaff;
            outline: none;
        }

    .contact-form textarea {
        resize: vertical;
        min-height: 150px;
    }

    .contact-form button {
        background: #77aaff;
        color: #fff;
        padding: 15px 30px;
        border: none;
        border-radius: 10px;
        font-size: 1.1em;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }

        .contact-form button:hover {
            background: #5599ff;
            transform: translateY(-3px);
        }

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
}

    footer p {
        margin: 0;
        font-size: 1em;
    }

    footer a {
        color: #77aaff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: #5599ff;
        }

.social-media {
    margin-top: 20px;
}

    .social-media a {
        margin-right: 10px;
        color: #77aaff;
        font-size: 1.5em;
        transition: color 0.3s ease;
    }

        .social-media a:hover {
            color: #5599ff;
        }