


        html{
            scroll-behavior: smooth;
            scroll-timeline: 10;
        }

        html::-webkit-scrollbar{
            width: 0.5rem;
            background-color: black;
        }

        html::-webkit-scrollbar-track{
        background-color: white;
            }

            html::-webkit-scrollbar-thumb{
                border-radius: 3rem;
            background-color: #e2dfd8
        }

.logo img {
    max-height: 75px; 
    height: auto;
    width: auto;
}




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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e1919;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e4df;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(30, 25, 25, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #61525a;
    margin-bottom: 4px;
}

.tagline {
    font-size: 14px;
    color: #736c64;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1e1919;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #61525a;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #61525a;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f7f5f2 0%, #e8dfd6 100%);
    padding: 120px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(97, 82, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(115, 108, 100, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1e1919;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #61525a;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #736c64;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-logo {
    position: absolute;
    top: 55%; /* dikey ortalama */
    transform: translateY(-50%); /* tam ortalama */
    width: 820px; /* logo boyutu */
    height: 720px;
    object-fit: contain;
    border-radius: 120%; /* yarımay gibi kavisli görünüm için */
    opacity: 0.2; /* hafif şeffaf */
}

.hero-logo.left {
    left: -500px; 
    clip-path: ellipse(60% 70% at -11% 70%); 
}

.hero-logo.right {
    right: -500px;
    clip-path: ellipse(50% 70% at 98.25% 70%);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #61525a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(97, 82, 90, 0.25);
}

.btn-primary:hover {
    background-color: #4f4249;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 82, 90, 0.35);
}

.btn-secondary {
    background-color: #ffffff;
    color: #61525a;
    border: 2px solid #61525a;
}

.btn-secondary:hover {
    background-color: #61525a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(97, 82, 90, 0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #1e1919;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #736c64;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 25, 25, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 25, 25, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #61525a;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1e1919;
    margin-bottom: 12px;
}

.product-description {
    font-size: 15px;
    color: #736c64;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #61525a;
    margin-bottom: 20px;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #4a9b6f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-btn:hover {
    background-color: #3d8359;
    transform: scale(1.02);
}

/* Branches Section */
.branches {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f5f2 0%, #ffffff 100%);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.branch-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 25, 25, 0.1);
    padding: 32px;
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e4df;
}

.branch-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1e1919;
}

.branch-badge {
    background-color: #61525a;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.branch-badge-secondary {
    background-color: #736c64;
}

.branch-info {
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 20px;
}

.info-label {
    display: block;
    font-weight: 600;
    color: #61525a;
    margin-bottom: 8px;
    font-size: 15px;
}

.info-text {
    color: #1e1919;
    font-size: 15px;
    line-height: 1.6;
}

.branch-map {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(30, 25, 25, 0.1);
}

.branch-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #4a9b6f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.branch-btn:hover {
    background-color: #3d8359;
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: #f7f5f2;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid #61525a;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1e1919;
    margin-bottom: 12px;
}

.contact-card p {
    color: #736c64;
    line-height: 1.8;
    font-size: 15px;
}

.contact-whatsapp {
    background: linear-gradient(135deg, #61525a 0%, #4f4249 100%);
    padding: 40px;
    border-radius: 16px;
    color: #ffffff;
}

.contact-whatsapp h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-whatsapp > p {
    margin-bottom: 32px;
    opacity: 0.9;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #4a9b6f;
    padding: 20px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
    background-color: #3d8359;
    transform: translateX(4px);
}

.wa-icon {
    font-size: 32px;
}

.wa-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.wa-number {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1e1919;
    color: #bbb5ae;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb5ae;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #736c64;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .products {
        padding: 60px 0;
    }

    .branches {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .branch-card {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-name {
        font-size: 20px;
    }

    .branch-name {
        font-size: 22px;
    }

    .contact-whatsapp {
        padding: 28px;
    }
}

.whatsapp-float {
    position: fixed;      /* Sayfada sabit kalmasını sağlar */
    width: 60px;          /* Buton boyutu */
    height: 60px;
    bottom: 20px;         /* Sayfanın altından uzaklığı */
    right: 20px;          /* Sayfanın sağından uzaklığı */
    background-color: #25D366;  /* WhatsApp yeşili */
    color: #fff;
    border-radius: 50%;   /* Yuvarlak yapar */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Hover efekti için büyütme */
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}



/* ===============================
   MOBILE HAMBURGER MENU
================================ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 3000;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .nav {
        display: none;
    }
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #1e1919;
    border-radius: 3px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background: #ffffff;
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 2000;
}

.mobile-menu a {
    text-decoration: none;
    color: #1e1919;
    font-weight: 600;
}

.wa-link {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500;
}

/* Menu Open */
.menu-open .mobile-menu {
    right: 0;
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}


/* =========================
   THEME TOGGLE (iOS STYLE)
========================= */

.theme-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.theme-toggle span {
    position: absolute;
    font-size: 20px;
    transition:
        transform 0.45s cubic-bezier(.4,0,.2,1),
        opacity 0.35s ease;
}

/* Hover micro-interaction */
.theme-toggle:hover {
    transform: scale(1.06);
}


/* FORCE HAMBURGER VISIBILITY */
@media (max-width: 991px) {
    .hamburger {
        display: flex !important;
    }
}
