/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Indie Flower", cursive;
    background: white;
    color: #0f0c06;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: white;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo-letter {
    font-size: 8rem;
    font-weight: 400;
    font-family: "Shadows Into Light", cursive;
    color: #0f0c06;
    text-shadow: 0 10px 30px rgba(15,12,6,0.2);
    margin: 0 10px;
    opacity: 0;
    transform: translateY(50px);
}

.logo-letter.y {
    animation: slideInLeft 1.5s ease-out 0.5s forwards;
}

.logo-letter.o {
    animation: slideInCenter 1.5s ease-out 1s forwards;
}

.logo-letter.n {
    animation: slideInRight 1.5s ease-out 1.5s forwards;
}

.slogan {
    font-size: 1.5rem;
    color: #0f0c06;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2.5s forwards;
    max-width: 600px;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #0f0c06;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 1000; /* Yüksek z-index değeri */
}

/* Menu Section */
.menu-section {
    padding: 100px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    margin: 0 20px;
    border-radius: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(50px);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #f0f0f0;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #0f0c06;
}

.menu-item h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #0f0c06;
    font-weight: 400;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 20px;
    background: white;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-size: 3rem;
    color: #0f0c06;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 400;
}

.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    opacity: 0;
    transform: scale(0.9);
}

.slider-content {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #2c251a;
}

/* Görselleri slider boyutuna sığdırmak için */
.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Görseli tamamen gösterir, en-boy oranını korur */
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10; /* Navigasyon butonlarının görsellerin üstünde kalması için */
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}
/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: white;
    color: #0f0c06;
    opacity: 0;
    transform: translateY(50px);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f0c06;
    font-weight: 400;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    padding: 10px 20px;
    background: #0f0c06;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #333;
    transform: translateY(-3px);
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer İmza */
.footer-signature {
    text-align: center;
    padding: 20px;
    background: white;
    border-top: 1px solid rgba(15, 12, 6, 0.1);
    margin-top: 50px;
    position: relative;
    font-family: "Indie Flower", cursive;
}

.signature-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    cursor: pointer;
}

.signature-text {
    font-size: 1.1rem;
    color: #0f0c06;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.signature-link:hover .signature-text {
    opacity: 1;
    transform: translateY(-2px);
}

.signature-year {
    font-weight: 400;
    margin-right: 5px;
}

.signature-name {
    font-style: italic;
    color: #0f0c06;
    position: relative;
}

.signature-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0f0c06;
    transition: width 0.3s ease;
}

.signature-link:hover .signature-name::after {
    width: 100%;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        transform: translateX(-100px);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        transform: translateX(100px);
    }
}

@keyframes slideInCenter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    from {
        transform: translateY(-50px) scale(0.8);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-letter {
        font-size: 4rem;
    }
    
    .slogan {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}