/* Genel Stiller */
:root {
    --primary-color: #1a1547;
    --secondary-color: #2d2570;
    --light-blue: #403494;
    --dark-blue: #0f0c2b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 65px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-blue) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: -76px;
    padding-top: 76px;
    min-height: 600px;
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: left center;
    }
}

/* iOS cihazlar için */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg') left center/cover no-repeat;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Features */
.features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Menu */
.menu-category {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.menu-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-item {
    text-align: center;
}

.menu-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 200px;
    height: 200px;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact */
.contact-info, .working-hours {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 260px;
}

.contact-info h3, .working-hours h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    margin-top: 1.5rem;
}

.working-hours ul {
    margin: 0;
    padding: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.working-hours li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-img {
        width: 150px;
        height: 150px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Instagram Feed Stilleri */
.instagram-feed {
    margin: 0 -10px;
}

.instagram-feed .instagram-media {
    margin: 0 !important;
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .instagram-feed .col-md-4 {
        margin-bottom: 20px;
    }
}

.menu-button-container {
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.menu-button {
    display: block;
    background: linear-gradient(145deg, var(--primary-color), var(--dark-blue));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 21, 71, 0.3);
}

.menu-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 21, 71, 0.4);
    color: white;
    background: linear-gradient(145deg, var(--light-blue), var(--primary-color));
}

.menu-button i {
    color: white;
    margin-bottom: 1rem;
}

.menu-button h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.menu-button p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    color: white;
}