* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
} 

html, body { 
    height: 100%; 
    font-family: 'Montserrat', sans-serif; 
    color: #fff; 
} 

body { 
    display: flex; 
    flex-direction: column; 
} 


.main-header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    padding: 8px 30px; 
    background-color: #222; 
} 

.language-selector { 
    text-align: right;  
    font-size: 0.9rem; 
} 
.language-selector a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 700; 
    padding: 5px; 
    transition: color 0.3s ease; 
    display: inline-flex;  
    align-items: center;  
} 
.language-selector a:hover { 
    opacity: 0.8; 
} 
.language-selector a.active { 
    opacity: 1; 
} 
.language-selector img { 
    width: 24px;  
    height: auto;  
    vertical-align: middle;  
} 
.language-separator { 
    color: #fff; 
    margin: 0 8px; 
} 



.content-container { 
    display: flex; 
    flex: 1; 
    padding-top: 50px;  
} 


.otomotiv-section, .gida-section { 
    position: relative; 
    flex: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background-size: cover; 
    background-position: center; 
    transition: transform 0.3s ease; 
} 


.otomotiv-section { 
    background-image: url('../images/otomotiv.jpg'); 
} 

.gida-section { 
    background-image: url('../images/gida.jpg'); 
} 


.overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.4); 
    transition: background-color 0.3s ease; 
} 

.otomotiv-section:hover .overlay, 
.gida-section:hover .overlay { 
    background-color: rgba(0, 0, 0, 0.2); 
} 


.content { 
    position: relative; 
    z-index: 2; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
} 


.otomotiv-logo { 
    max-width: 300px; 
    height: auto; 
    margin-bottom: 20px; 
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); 
} 

.gida-logo { 
    max-width: 300px; 
    height: auto; 
    margin-bottom: 20px; 
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); 
} 


.btn { 
    display: inline-block; 
    margin-top: 20px; 
    padding: 12px 30px; 
    background-color: transparent; 
    color: #fff; 
    border: 2px solid #fff; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 5px; 
    transition: background-color 0.3s ease, color 0.3s ease; 
} 

.btn:hover { 
    background-color: #fff; 
    color: #333; 
} 


.footer { 
    width: 100%; 
    background-color: #222; 
    color: #ccc; 
    padding: 25px 20px; 
    text-align: center; 
    flex-shrink: 0; 
} 

.footer-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding-bottom: 15px; 
    margin-bottom: 15px; 
} 

.footer-column { 
    flex: 1; 
    padding: 0 20px; 
} 


.contact-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    text-align: left; 
} 

.contact-list li { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 15px; 
} 

.contact-list li:last-child { 
    margin-bottom: 0; 
} 

.contact-list i { 
    font-size: 1.2rem; 
    margin-right: 15px; 
    margin-top: 2px; 
    color: #4A90E2; 
} 

.contact-list p { 
    margin: 0; 
    font-size: 0.9rem; 
    line-height: 1.5; 
    color: #ccc; 
} 

.social-links { 
    text-align: left; 
    margin-top: 15px; 
} 

.social-links a { 
    color: #fff; 
    margin-right: 20px; 
    margin-left: 0; 
    font-size: 1.5rem; 
    transition: color 0.3s ease; 
} 

.social-links a:hover { 
    color: #777; 
} 

.copyright { 
    font-size: 0.8rem; 
    color: #777; 
} 


.footer-heading { 
    font-size: 1.2rem; 
    font-weight: 700; 
    margin-bottom: 5px; 
    color: #fff; 
    text-align: left; 
} 

.footer-subtext { 
    font-size: 0.9rem; 
    color: #ccc; 
    margin-bottom: 15px; 
    text-align: left; 
} 

.contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
} 

.contact-form input, 
.contact-form textarea { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #444; 
    border-radius: 5px; 
    background-color: #333; 
    color: #fff; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.9rem; 
} 

.contact-form input::placeholder, 
.contact-form textarea::placeholder { 
    color: #999; 
} 

.form-submit-btn { 
    padding: 12px 20px; 
    background-color: #4A90E2; 
    color: #fff; 
    border: none; 
    border-radius: 5px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
} 

.form-submit-btn:hover { 
    background-color: #3A73C2; 
} 


@media (max-width: 768px) { 
    .main-header { 
        text-align: center; 
        padding: 10px; 
    } 
    .content-container { 
        flex-direction: column; 
    } 
    .otomotiv-section, .gida-section { 
        height: 50vh; 
    } 
    .content { 
        padding-bottom: 30px; 
    } 
    .otomotiv-logo, .gida-logo { 
        padding-top:20px; 
        max-width: 50%; 
        height: auto; 
    } 
    .btn { 
        padding: 10px 20px; 
        margin-top: 10px; 
    } 
    .footer-content { 
        flex-direction: column; 
        text-align: center; 
        align-items: center; 
    } 
    .footer-column { 
        padding: 10px 0; 
        width: 100%; 
    } 

    .contact-list { 
        text-align: center; 
        margin-top: 20px; 
    } 
    .contact-list li { 
        justify-content: center; 
        align-items: center; 
    } 
    .contact-list i { 
        margin-right: 10px; 
    } 
    .social-links { 
        text-align: center; 
        margin-top: 15px; 
    } 
    .social-links a { 
        margin: 0 10px; 
    } 
    .footer-heading, .footer-subtext { 
        text-align: center; 
    } 
}