


@font-face {
    font-family: 'Gilroy';
    /* CSS dosyası 'assets' içinde olduğu için font yolu '../' ile bir üst dizine çıkar */
    src: url('../gilroy/Gilroy-Bold.woff2') format('woff2'),
         url('../gilroy/Gilroy-Bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../gilroy/Gilroy-Regular.woff2') format('woff2'),
         url('../gilroy/Gilroy-Regular.woff') format('woff');
    font-weight: 400; /* Regular */
    font-style: normal;
}



:root {
    --primary-color: #1e608b; 
    --text-color: #333;
    --light-text-color: #555;
    --background-color: #f7f7f7; 
    --border-color: #e0e0e0;
}

/* Ana Footer Stili */
.fizyowe-footer {
    font-family: 'Gilroy', sans-serif;
    background-color: var(--background-color);
    padding: 40px 30px 0; 
    color: var(--text-color);
    
    overflow: hidden; 
}


.footer-top {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: flex-end; 
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;

    
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
}


.footer-motto p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 700; 
}


.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: left; 
}

.footer-address p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
    color: var(--light-text-color);
}

.footer-social-icons {
    display: flex;
    gap: 24px; 
    margin-top: 15px; 
}

.social-icon {
    font-size: 1.4rem; 
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: var(--text-color);
    transform: scale(1.1);
}


.footer-bottom {
    padding-top: 10px;
}

.footer-brand-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    line-height: 0.85; 
    width: 100%;
    position: relative;
    margin-bottom: -0.0em; 
    
    
    font-size: clamp(60px, 18vw, 300px);
}


.footer-brand-logo {
    
    height: auto; 

    width: clamp(300px, 80vw, 1450px);
    vertical-align: middle;
}

.copyright-symbol {
    font-size: clamp(20px, 4vw, 36px); 
    font-weight: 400;
    color: var(--primary-color); 
    position: absolute;
    right: -0.5em; 
    bottom: 10%; 
}


/* Mobil Uyumlu Düzenlemeler */
@media (max-width: 768px) {
    .fizyowe-footer {
        padding: 30px 20px 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: center; 
        text-align: center;
    }

    .footer-contact {
        align-items: center; 
        text-align: center;
    }
}

