@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: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    background: linear-gradient(180deg, #470b09 0%, rgba(99, 28, 33, 0.8) 100%);
    border-bottom: 1px solid #f7f7f7;
    padding: 0 15%;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo-link:hover {
    transform: scale(1.05);
}

.header-logo {
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.45));
}

.header-logo-text {
    font-size: 30px;
    color: #f7f7f7;
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    text-shadow: 0 0 15px rgb(0, 0, 0, 0.5);
}

.header-logo-texts {
    position: relative;
}

.header-logo-registration {
    font-size: 11px;
    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: -8px;
    right: -18px;
}

.header-right {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 70%;
}

.header-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    column-gap: 35px;
}

.header-navbar-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.header-navbar-link:hover {
    color: #f0f0f0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #f7f7f7;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle.active {
    color: #ffffff;
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #4d292b 0%, rgba(53, 28, 30, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-navbar {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-link {
    display: block;
    color: #f7f7f7;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    color: #ffffff;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .header {
        height: 100px;
        padding: 0 20px;
        position: relative;
    }

    .header-left {
        order: 1;
    }

    .header-logo {
        height: 80px !important;
    }

    .header-logo-text {
        font-size: 20px;
    }

    .header-logo-registration {
        font-size: 8px;
        height: 12px;
        width: 12px;
        top: -6px;
        right: -15px;
        border-width: 1px;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .header-right {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .header {
        height: 90px;
        padding: 0 15px;
    }

    .header-logo {
        height: 70px !important;
    }

    .mobile-menu-toggle {
        font-size: 24px;
    }

    .mobile-menu-link {
        font-size: 16px;
        padding: 12px 20px;
    }
}












.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;
}