/* Çerez Bildirimi */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2a2a2a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    z-index: 9999;
    display: none;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-notice,
.cookie-notice * {
    color: #fff !important;
}

.cookie-notice a {
    color: #fff !important;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    flex: 1;
}

.cookie-btn {
    background-color: var(--primary);
    color: white;
}

.cookie-btn:hover {
    background-color: var(--accent);
}

.cookie-btn.outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cookie-btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.cel-footer {
    background-color: var(--primary);
    color: #fff;
    padding: 40px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--accent);
}

.footer-left {
    flex: 0 0 25%;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.3;
    display: block;
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--gradient-end);
}

.footer-menu {
    flex: 0 0 25%;
}

.footer-menu h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Camera Obscura', cursive;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 20px;
}

.footer-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: var(--gradient-end);
}

.footer-contact {
    flex: 0 0 30%;
}

.footer-contact h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Camera Obscura', cursive;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.contact-info img {
    width: 16px;
    margin-right: 10px;
    margin-top: 3px;
}

.contact-info span, .contact-info a {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
}

.footer-map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s, margin 0.3s;
}

.footer-legal a:hover {
    margin-top: -10px; /* Yukarı kaydır */
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.footer-social a:hover img {
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        flex-wrap: wrap;
    }
    
    .footer-left, .footer-menu, .footer-contact {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cookie-notice {
        max-width: 90%;
        right: 5%;
        bottom: 10px;
    }
}