﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    background-color: whitesmoke;
    color: #333;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 120px;
    background-color: whitesmoke;
    border-bottom: 2px solid #f1f1f1;
    z-index: 1000;
}

    .header .logo img {
        height: 90px;
        width: 120px;
    }

    .header .reservation {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-family: 'Montserrat', 'Inter', sans-serif;
        font-size: 13px;
        letter-spacing: 0.09rem;
    }

        .header .reservation .title {
            font-weight: 600;
            color: #008000;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .header .reservation .title i {
                color: #F5A623;
                font-size: 22px;
            }

        .header .reservation .numbers {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .header .reservation a {
            text-decoration: none;
            color: #F5A623;
            font-weight: 600;
            transition: color 0.3s ease, transform 0.2s ease;
        }

            .header .reservation a:hover {
                color: #d18b14;
                transform: translateX(3px);
            }

.navbar {
    position: sticky;
    top: 0;
    background-color: #008000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

    .navbar .nav-links {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        list-style: none;
        padding: 0;
        flex-wrap: wrap;
        letter-spacing: 0.04rem;
    }

        .navbar .nav-links li {
            margin-right: 10px;

        }

    .navbar a {
        color: #fff;
        text-decoration: none;
        padding: 14px 20px;
        display: block;
        font-family: 'Montserrat', 'Inter', sans-serif;
        font-weight: 200;
        border-radius: 4px;
        transition: background 0.3s ease, color 0.3s ease;
    }

        .navbar a:hover, .navbar a.active {
            background-color: #0F4D0F;
            color: #fff;
        }

.social-media {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .social-media .social-text {
        color: #fff;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: 0.05rem;
    }

    .social-media a {
        font-size: 24px;
        text-decoration: none;
        padding: 8px;
        border-radius: 50%;
        transition: color 0.3s ease, background-color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .social-media a:hover {
            color: #fff;
            background-color: #F5A623;
        }

.hamburger {
    display: none;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

footer {
    background-color: #f9f9f9;
    border-top: 2px solid #ccc;
    padding: 30px 20px;
    font-size: 13px;
    color: #555;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-center {
    text-align: center;
    color: #008000;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

    .footer-right a {
        text-decoration: none;
        color: #F5A623;
        transition: color 0.3s ease;
    }

        .footer-right a:hover {
            color: #9f7f28;
        }

.footer-left p {
    color: #F5A623;
    transition: color 0.3s ease;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 25px 35px;
    border-radius: 12px;
    width: 80%;
    max-width: 700px;
    line-height: 1.6;
    font-family: 'Montserrat', 'Inter', sans-serif;
    max-height: 80vh;
    overflow-y: auto;
}

    .modal-content h2 {
        margin-bottom: 20px;
        font-weight: 400;
        font-size: 13px;
        color: #000;
    }

    .modal-content h3 {
        margin-top: 24px;
        margin-bottom: 12px;
        font-weight: 400;
        font-size: 16px;
        color: #F5A623;
    }

    .modal-content p {
        margin-bottom: 16px;
        font-weight: 400;
        font-size: 14px;
        color: #000;
        line-height: 1.5;
    }

    .modal-content strong, .modal-content a[href*="aricoz.com.tr"] {
        font-weight: 400;
        color: #F5A623;
    }

    .modal-content ul {
        padding-left: 20px;
        margin-bottom: 16px;
    }

    .modal-content li {
        font-size: 14px;
        line-height: 1.5;
    }

.close {
    color: #444;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

    .close:hover {
        color: #f00;
    }

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px 60px;
    }

        .header .reservation {
            font-size: 12px;
        }

    .navbar {
        flex-direction: column;
        padding: 10px 20px;
    }

        .navbar .nav-links {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

            .navbar .nav-links.active {
                display: flex;
            }

            .navbar .nav-links li {
                margin: 5px 0;
                width: 100%;
                text-align: center;
            }

    .social-media {
        display: none;
        margin-top: 10px;
        margin-bottom: 5px;
    }

        .social-media.active {
            display: flex;
        }

    .hamburger {
        display: block;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        width: 100%;
        text-align: center;
        margin-bottom: 15px; /* alt boşluk bırak */
    }

    .footer-center {
        order: 99; /* en alta gelsin */
        width: 100%;
        margin-top: 10px;
    }

    .footer-right {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #25D366; /* WhatsApp yeşili */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

    /* Hover efekti (Büyütme) */
    .whatsapp-float:hover {
        transform: scale(1.1);
    }

/* WhatsApp ikonunun boyutunu ayarla */
.whatsapp-icon {
    width: 30px;
    height: 30px;
    display: block;
}

@media only screen and (max-device-width: 768px) {
    .whatsapp-float {
        bottom: 10px;
        right: 6px;
        padding: 8px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .scroll-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 99999;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.4s;
    }
}

/* Genel */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fade-in animasyonu */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

/* Lazy-loaded image için blur efekti */
.lazy {
    filter: blur(10px);
    transition: filter 0.8s ease;
}

    .lazy.loaded {
        filter: blur(0);
    }

@media (max-width: 600px) {
    .header .reservation {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .header .reservation .numbers {
            align-items: center;
        }
}

/* Submenu temel */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 999;
}

    .submenu li a {
        display: block;
        padding: 10px 18px;
        color: #333;
        font-size: 14px;
        white-space: nowrap;
    }

        .submenu li a:hover {
            background: green;
        }

/* Hover ile açılma (desktop) */
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobil */
@media (max-width: 991px) {
    .submenu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 10px;
    }

    .has-submenu.open .submenu {
        display: block;
    }
}

.nav-links li.active > a {
    background-color: #0F4D0F;
    color: #fff;
}

.nav-links li.active {
    position: relative;
}

    .nav-links li.active::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #7bc47f;
        border-radius: 2px;
    }
