/* Variables */
:root {
    --primary-green: #1F3B2D;
    --cream: #F4EFE4;
    --gold: #B08A4A;
    --dark-brown: #4A3423;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-main {
    font-family: 'Playfair Display', serif;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Navigation */
.navbar {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(31, 59, 45, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(176, 138, 74, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-main {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-sub {
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--dark-brown);
    transform: translateY(-3px);
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-white-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    margin-top: 20px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Hero Section */
/* Swiper Kapsayıcı Ayarları */
.hero-slider {
    width: 100%;
    height: 100vh; /* Tam ekran yüksekliği */
    position: relative;
}

.swiper-slide.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slaytlara Özel Arka Planlar */
.slide-1 {
    background-image: url('sizin-resminiz-1.jpg');
}

.slide-2 {
    background-image: url('sizin-resminiz-2.jpg');
}

/* Swiper Oklarını Özelleştirme (Sarı/Gold yapabilirsiniz) */
.swiper-button-next,
.swiper-button-prev {
    color: #d4af37; /* btn-gold renginize uygun bir renk kodu */
}

.swiper-pagination-bullet-active {
    background-color: #d4af37 !important;
}


.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1625938146369-adc83368bca7?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 20, 15, 0.9), rgba(10, 20, 15, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--gold);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Popular Products */
.popular {
    padding: 100px 0;
    background-color: var(--primary-green);
}

.section-tag {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.text-white { color: var(--white); }
.center { text-align: center; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Full Menu */
.full-menu {
    padding: 100px 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: none;
    border: 1px solid var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--dark-brown);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--gold);
    color: white;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #ccc;
}

.menu-item-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.menu-item-info p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.menu-price {
    font-weight: 600;
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.logo-white {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover { color: var(--gold); }

.footer-links ul {
    list-style: none;
    margin-top: 1.5rem;
}

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add JS to toggle this */
        position: absolute;
        top: 100px; left: 0; width: 100%;
        background: var(--primary-green);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
}