body {
    font-family: "Lato", 'Helvetica Neue', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    font-size: 20px;
}


header {
    background: url('/images/banner.webp') no-repeat center center/cover;
    color: white;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}


section {
    padding: 4rem 4rem;
}

@media (min-width: 1600px) {
    section {
        padding: 4rem 20rem !important;
    }
}

section#about {
    background: #f4f4f4;
    /* text-align: center; */
}

section#process {
    background: #f4f4f4;
    /* text-align: center; */
}

section#gallery {
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 calc(25% - 1rem);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

section#contact {
    background: #fff;
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.floating-buttons {
    position: fixed;
    bottom: 110px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons a {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.floating-buttons a.phone-btn {
    background-color: #34B7F1;
}

.floating-buttons a:hover {
    background-color: #128C7E;
}

.floating-buttons a.phone-btn:hover {
    background-color: #1A73E8;
}


nav {
    /* background-color: #333; */
    overflow: hidden;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    transition: max-height 0.4s ease-out;
    max-height: 40px;
    overflow: hidden;
}
nav ul.open {
    max-height: 500px; /* istediğiniz bir değer verebilirsiniz */
}
nav ul li {
    float: left;
}
nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover {
    /* background-color: #111; */
    color: greenyellow;
    font-weight: bold;
}

.menu-icon {
    display: block;
    float: right;
    padding: 14px 16px;
    cursor: pointer;
    color: greenyellow;
}
@media screen and (max-width: 1000px) {
    nav ul {
        display: block;
        width: 100%;
    }
    nav ul li {
        float: none;
        display: block;
        text-align: left;
    }
    .menu-icon {
        display: block;
    }
}

@media screen and (min-width: 1001px) {
    .menu-icon {
        display: none;
    }
}