@import url('https://fonts.googleapis.com/css2?family=Allura&family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* -------------------------- HEADER -------------------------- */

.header {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    background: linear-gradient(180deg, #4a0301 0%, rgba(104, 43, 47, 0.8) 100%);
    border-bottom: 1px solid #f7f7f7;
}

.header-logo {
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.45));
    display: flex;
    align-self: center;
    justify-content: center;
}

.header-logo-link {
    display: flex;
    align-self: center;
    justify-content: center;
}

.header-logo-text {
    font-size: 40px;
    color: #f7f7f7;
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    text-shadow: 0 0 15px rgb(0, 0, 0, 0.5);
    position: relative;
}

.header-logo-texts {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-text-registration {
    font-size: 10px;
    color: #dfdfdf;
    font-family: "Poppins", sans-serif;
    border-radius: 100%;
    border: 2px solid #dfdfdf;
    height: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -7px;
    right: -18px;
}

/* -------------------------- HOME -------------------------- */

.home {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 220px);
}

.home-right,
.home-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.home-link-container {
    width: 50%;
    height: 100%;
    text-decoration: none;
}

.home-left {
    padding: 0 70px 0 0;
    background-image: url(../images/endustriyel-mutfak-5.jpg);
    justify-content: right;
}

.home-right {
    padding: 0 0 0 70px;
    background-image: url(../images/ornek-tarla-5.jpg);
}

.home-header-slogan {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 25px;
    background-color: rgb(26, 28, 31, 0.3);
    border-radius: 0 0 0 20px;
    color: #ff7671;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 5px rgb(0, 0, 0, 0.7);
}

.dark {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, 0.3);
}

.home-sections-content {
    text-shadow: 0 0 30px black;
    color: white;
    z-index: 1000;
}

.home-header {
    font-size: 40px;
    line-height: 1.1;
    position: relative;
    margin-bottom: 20px;
}

.home-header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 150px;
    height: 5px;
    background-color: white;
}

.home-header2::after {
    left: 0;
}

.home-desc {
    font-size: 18px;
}

.footer {
    width: 100%;
    padding: 28px 20px 20px;
    background: linear-gradient(180deg, #1a1c1f 0%, #26292e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #f7f7f7;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.footer-socials-link {
    text-decoration: none;
    color: #f7f7f7;
    font-size: 20px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-socials-link:hover {
    background-color: #f7f7f7;
    color: #1a1c1f;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-column {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 12px;
    flex: 0 0 auto;
}

.footer-brand {
    flex: 0 0 200px;
    /* Logo alanı sabit, küçük bir genişlikte kalsın */
}

.footer-links,
.footer-contact {}

.footer-logo {
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.45));
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(247, 247, 247, 0.9);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.footer-menu-link {
    text-decoration: none;
    color: rgba(247, 247, 247, 0.9);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-menu-link:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 14px;
    color: rgba(247, 247, 247, 0.9);
}

.footer-contact-item i {
    font-size: 14px;
    width: 18px;
}

.footer-contact-link {
    color: rgba(247, 247, 247, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

@media (max-width: 900px) {
    .footer-inner {
        flex-wrap: wrap;
        row-gap: 25px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 650px) {
    .footer {
        padding: 30px 16px 20px;
    }

    .footer-column {
        flex: 1 1 100%;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

.footer-copyright {
    color: #f7f7f7;
    font-size: 18px;
    margin-top: 5px;
}

/* -------------------------- RESPONSIVE QUERIES -------------------------- */

@media (max-width: 991px) {

    /* Header (Optional tweaks for better mobile experience) */
    .header {
        height: auto;
        padding: 20px 0;
    }

    .header-logo {
        height: 100px;
        width: auto;
    }

    /* Home Section */
    .home {
        flex-direction: column;
        height: auto;
    }

    .home-link-container {
        width: 100%;
        height: 50vh;
        /* Split viewport vertically */
    }

    .home-left,
    .home-right {
        padding: 0;
        justify-content: center;
        /* Centers the text block horizontally */
        background-position: center;
    }

    .home-left {
        /* User requested text block in center, but text still right aligned */
        /* justify-content: right was default, now center */
    }

    /* Slogan on home right */
    .home-header-slogan {
        font-size: 16px;
        padding: 8px 15px;
    }

    .home-header {
        font-size: 32px;
        /* Slightly smaller font */
    }
}