@font-face {
    font-family: 'Poppins';
    src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
}

:root {
    --primary-color: #b98632;
    --secondary-color: #fbf19e;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 400;
}

/* Logo ve Poster Bölümü */
.poster-section {
    width: 100%;
    height: 45vh;
    position: relative;
}

.poster-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.poster-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    width: 280px;
    height: 140px;
    z-index: 2;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Kutular Bölümü */
.boxes-section {
    display: flex;
    flex-direction: column;
}

.box {
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
}

.box-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.box-icon {
    width: 80px;
    height: auto;
}

.box-2 .box-icon {
    filter: brightness(0) invert(1);
}

.box-3 .box-icon {
    filter: brightness(0) invert(1);
}

.box-title {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.phone-number {
    display: block;
    color: #FFF;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-align: right;
    font-weight: 400;
}

.box-1 {
    background-color: #F2A61E;
}

.box-2 {
    background-color: #4A4A4A;
    color: #FFFFFF;
}

.box-3 {
    background-color: var(--primary-color);
    color: #FFF;
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-left {
    text-align: center;
}

.footer-right {
    text-align: center;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-right .footer-title {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.footer-left .footer-title {
    font-weight: 600;
}

.address {
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.navigation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    margin: 0 auto;
    color: var(--primary-color);
    letter-spacing: 0.2px;
}

.navigation span {
    display: inline-block;
    line-height: 1;
}

.nav-icon {
    width: 24px;
    height: auto;
}

.social-icon {
    width: 150px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .boxes-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .navigation {
        display: flex;
        justify-content: center;
        width: 100%;
    }
} 