/* Saklı Bahçe Esenköy - Global Styles */
/* Header, Footer ve genel bileşenler için CSS */

:root {
    --primary: #b34512;
    --secondary: #4b6758;
    --primary-light: #d4571a;
    --primary-dark: #8a340e;
    --secondary-light: #5e8066;
    --secondary-dark: #3d5345;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
}

/* Font Families */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Yakında Badge Styles */
.coming-soon-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Header Styles */
.header-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 4px 15px rgba(179, 69, 18, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 69, 18, 0.4);
}

.btn-secondary {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 103, 88, 0.3);
}

/* Logo Styles */
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Footer Styles */
.footer-gradient {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

/* Social Icons */
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(179, 69, 18, 0.4);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    
    .mobile-center {
        text-align: center;
    }
}

/* Active Menu States */
.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: activeMenuPulse 2s infinite ease-in-out;
}

@keyframes activeMenuPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(179, 69, 18, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(179, 69, 18, 0);
    }
}

/* Active dropdown parent */
.nav-link.active .fas.fa-chevron-down {
    color: var(--primary);
    transform: rotate(180deg);
}

/* Active dropdown items */
.dropdown-item.active {
    background: rgba(179, 69, 18, 0.08) !important;
    color: var(--primary) !important;
    border-left: 3px solid var(--primary);
    padding-left: calc(1.5rem - 3px) !important;
}

/* Mobile active states */
.mobile-menu .active {
    background: linear-gradient(135deg, rgba(179, 69, 18, 0.1) 0%, rgba(212, 85, 26, 0.05) 100%) !important;
    border-left: 4px solid var(--primary) !important;
    padding-left: calc(1rem - 4px) !important;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Mobile submenu active states */
.mobile-menu .text-primary {
    font-weight: 600;
    position: relative;
}

.mobile-menu .text-primary::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Hover improvements for active items */
.nav-link.active:hover {
    color: var(--primary-dark) !important;
}

.nav-link.active:hover::after {
    background: var(--primary-dark);
}

/* Desktop dropdown positioning fix for active indicator */
.relative.group .nav-link.active::after {
    bottom: -12px;
}

/* Header glass effect improvements */
.header-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile menu active enhancement */
@media (max-width: 1024px) {
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-menu .active {
        transform: translateX(4px);
        transition: transform 0.3s ease;
    }
}
