/* Raleway Fontunun import edilmesi */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --anim: all 0.3s ease;
    --ff: "Raleway", sans-serif;
}

/*
* Genel Stil Ayarları
*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    z-index: 999;
    font-family: var(--ff);
    box-shadow: 0 2px 8px #000112;
}

body * {
    font-family: var(--ff);
}

/*
* Sayfa Yükleyici Stili
*/

#page-loader {
    position: fixed;
    inset: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/*
* Navbar logo stili
*/

.logo-desktop {
    display: block;
    width: 100px;
}

.logo-mobile {
    display: none;
}
@media (max-width: 992px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        height: 30px;
    }

    .wa-button-navbar {
        opacity: 0;
        pointer-events: none;
    }
}

/*
* Whatsapp Butonları stili
*/

.wa-button-navbar {
    background-color: #25d366;
    /* position: relative; */
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
    color: #f9f9f9;
    border: 0.1px whitesmoke solid;
    border-radius: 8px;
    padding: 7px;
    transition: transform 0.35s ease;
}

.wa-button-navbar:hover {
    transform: scale(1.2);
}

/*
* Hero Bölümü Stili
*/

#hero,
.hero-logo,
.hero-slogan {
    opacity: 0;
    transform: translateY(50px);
    animation-fill-mode: forwards;
}

#hero {
    display: flex;
    animation: backgroundZoom 3s ease-in-out infinite alternate,
               slideInBox 0.4s ease-out forwards;
    position: relative;
    padding-top: 30px;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 1s ease-in-out;
    box-shadow: inset 0 2px 8px #000112;
    margin-bottom: 100px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    /* overflow: hidden; */
}

.hero-logo,
.hero-slogan {
    position: relative;
    z-index: 2;
}

.hero-logo {
    animation: slideInItem 1s ease-out 3.4s forwards;
    max-width: 750px;
    width: 90%;
}

.hero-slogan {
    max-width: 500px;
    width: 60%;
    padding-bottom: 100px;
    animation: slideInItem 1s ease-out 3.8s forwards;
}

/*
* Fiyat Bilgisi Butonu Stili
*/

.price-button {
    position: absolute;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9),
        rgba(255, 115, 0, 0.9)
    );
    color: #f9f9f9;
    border: 0.1px whitesmoke solid;
    border-radius: 8px;
    padding: 7px;
    transition: transform 0.2s ease;
}

.price-button:hover {
    transform: scale(0.9);
}

.price-button-onscroll {
    color: #f9f9f9 !important;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9),
        rgba(255, 115, 0, 0.9)
    ) !important;
    border: 0.1px #000 solid;
}

.dropdown-menu .dropdown-item {
    padding-left: 0;
}

.copy {
    border: solid black 0.65px;
    border-radius: 15px;
    padding: 5px;
    margin-left: 15px;
    transform: 0.3s ease;
    transform-origin: center;
}

.copy:hover {
    transform: scale(1.2);
    transition: 0.3s;
}

@media (max-width: 768px) {
    #title {
        display: flex;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
        color: black;
        justify-content: center;
        margin-top: 150px;
        margin-left: 12%;
        margin-right: 12%;
        border: solid black 1px;
        border-radius: 15px;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 768px) {
    #title {
        display: flex;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
        color: black;
        justify-content: center;
        border: solid black 1px;
        border-radius: 15px;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
        height: 200px;
        width: 650px;
        margin-top: 150px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*
Animasyonlar
*/

@keyframes slideInBox {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundZoom {
  0% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 110% 110%;
  }
}


h2, h4,h5, p {
    text-align: center;
}

#about-us {
    width: 100%;
    margin: 0 55px 0 0;
}

#our-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#our-services ul {
    position: relative;
    left: 0;
    list-style: none;
    padding-right: 25px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 70%;
}

#our-services li {
    position: relative;
    display: flex;
    color: #fff;
    margin: 5px;
    padding: 22px;
    font-size: 25px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 550px;
    width: 90%;
    height: 150px;
    transition: var(--anim);
    box-sizing: border-box;
}

@media (max-width: 568px) {
    #our-services ul {
        grid-template-columns: 1fr;
        width: 90%;
    }
}

#our-services li .hizmet-icerik {
    color: #fff;
    position: relative;
    z-index: 2;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1200px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bilgi-al {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    border: 0.1px solid #fff;
    background: linear-gradient(to right, darkorange, black);
    color: #fff;
    padding: 5px;
    border-radius: 9px;
    padding-left: 20px;
    padding-right: 20px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--anim);
    box-shadow: 0 2px 8px #000112;
}

#our-services li .bilgi-al:hover {
    transform: scale(0.85);
}

#our-services li:hover .bilgi-al {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

#our-services li:hover {
    box-shadow: inset 0 2px 8px #000129;
}

.google-map {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 25px;
    margin-top: 25px;
}

.google-iframe {
    border-radius: 25px;
    max-width: 800px;
    width: 90%;
}

#contact-info {
    position: relative;
    padding-top: 15px;
    bottom: 0;
    background-color: #000111;
    color: #fff;
    box-shadow: 0 6px 24px #000;
}

#contact-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

/*
*Mail Gönderme
*/

.mail-gonder {
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    color: aliceblue;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    width: 90%;
    border: solid aliceblue 1px;
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mail-gonder:hover {
    box-shadow: 0px 2px 8px rgba(255, 255, 255, 0.8);
}

.mail-icerik1 {
    padding-left: 6px;
    margin-top: 5px;
    border-radius: 10px 10px 0px 10px;
    border: none;
    max-width: 185px;
    width: 41.625%;
    outline: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    margin-left: 30px;
}

.mail-icerik2 {
    padding-left: 6px;
    margin-top: 5px;
    border-radius: 10px 10px 10px 0;
    border: none;
    max-width: 185px;
    width: 41.625%;
    outline: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 375px) {
    .mail-icerik1 {
        margin-left: 10px;
    }
}

@media (max-width: 320px) {
    .mail-icerik1 {
        margin-left: 22px;
    }
}

@media (max-width: 375px) {
    .mail-icerik1 {
        margin-left: 26.25px;
    }
}

.mail-icerik {
    padding-left: 6px;
    display: flex;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 12px 12px 0 0;
    border: none;
    max-width: 375px;
    width: 84.375%;
    outline: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.mail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    max-width: 375px;
    width: 84.375%;
    border-radius: 0 0 12px 12px;
    border: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    margin: 0 auto;
}

.mail-button:hover {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(172, 172, 172, 0.895);
}

.mail-icerik:focus,
.mail-icerik1:focus,
.mail-icerik2:focus {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.8);
}

@media (max-width: 685px) {
    .contact-links {
        display: flex;
        justify-content: center;
        flex-direction: column;
        font-size: 20px;
    }
}

@media (min-width: 685px) {
    .contact-links {
        display: flex;
        justify-content: center;
        flex-direction: row;
        font-size: 20px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-element {
    opacity: 0;
    transition: all 0.5s ease-out;
}

.visible {
    animation: fadeUp 0.6s ease-out forwards;
}

.wa-button {
    background-color: #25d366;
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 180px;
    height: 48px;
    font-size: 27px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    box-shadow: 0 2px 8px #000;
    cursor: pointer;
    border: 0.1px solid rgba(255, 255, 255, 0.65);
    transition: var(--anim);
}

.wa-button > span {
    font-size: 20px;
    color: #f9f9f9;
}

.wa-button:hover {
    transform: scale(0.92);
}

@media (max-width: 768px) {
    .wa-button > span {
        display: none;
    }

    .wa-button {
        width: 60px;
        height: 60px;
        right: 12px;
        bottom: 12px;
        border-width: 1px;
        font-size: 35.5px;
    }
}

.copyright {
    color: #f9f9f9;
    background-color: #000112;
    position: absolute;
    left: 5px;
    bottom: 5px;
    z-index: 999;
}

@media (max-width: 768px) {
    #contact-info {
        padding-bottom: 25px;
    }
}
