.site-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .site-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-container {
        max-width: 1280px;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .site-container {
        max-width: 1440px;
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
}

@media (min-width: 1536px) {
    .site-container {
        max-width: 1600px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

html,
body {
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Caveat Font */
@font-face {
    font-family: 'Caveat';
    src: url('/site/assets/fonts/Caveat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Caveat';
    src: url('/site/assets/fonts/Caveat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Caveat';
    src: url('/site/assets/fonts/Caveat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Caveat';
    src: url('/site/assets/fonts/Caveat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Fofer Font */
@font-face {
    font-family: 'Fofer';
    src: url('/site/assets/fonts/Fofer.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Outfit font - tüm başlıklar */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rammetto One', sans-serif;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer {
    position: relative;
    background: #0d4a30;
    color: #fff;
}

.footer-wave {
    line-height: 0;
    overflow: hidden;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-body {
    background: #0d4a30;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-img {
    height: 5rem;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.footer-social-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-icon svg {
    width: 1rem;
    height: 1rem;
}

.footer-social-icon:hover {
    background: #41A62A;
    color: #fff;
    transform: translateY(-2px);
}

/* Column block */
.footer-col-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
}

/* Nav links */
.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: #96D700;
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #96D700;
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:focus {
    border-color: #96D700;
}

.footer-newsletter-btn {
    background: #41A62A;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-newsletter-btn:hover {
    background: #96D700;
    color: #1a1a1a;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #96D700;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
