:root {
    /* Colors - Dark & Red Theme */
    --color-primary: #E63946;
    /* Bold Red */
    --color-primary-dark: #C9302C;
    --color-secondary: #F0AD4E;
    /* Keeping Gold for localized accents */
    --color-dark: #121212;
    /* Deep Black Background */
    --color-light: #1E1E1E;
    /* Dark Gray for Cards/Sections */
    --color-white: #EDEDED;
    /* Off-white for text */
    --color-gray: #A0A0A0;
    /* Light Gray for secondary text */

    /* Fonts */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --border-radius: 12px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--color-light);
}

/* Now Dark Gray */

.section-header {
    margin-bottom: 3.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(230, 57, 70, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.divider {
    height: 4px;
    width: 80px;
    background: var(--color-primary);
    /* Changed to Red for theme consistency */
    border-radius: 2px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
    border-color: var(--color-primary);
}

.section-desc {
    color: var(--color-gray);
}

.authenticity-note {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-top: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.navbar.scrolled .logo {
    color: var(--color-white);
}

.logo .highlight {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-slogan {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-right: 1rem;
    letter-spacing: 0.5px;
}

.nav-links a:not(.btn) {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    opacity: 0.9;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--color-white);
}

.hamburger {
    display: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/hero-bg-final.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -80px;
    /* Counter navbar */
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(18, 18, 18, 1));
    /* Fade to black at bottom */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    filter: brightness(0.9);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exp-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-gray);
}

.features-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.features-list i {
    color: var(--color-primary);
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--color-primary);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-white);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #181818;
    /* Slightly lighter black */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid #333;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.menu-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}



.menu-item:hover .menu-img img {
    transform: scale(1.1);
}

.menu-info {
    padding: 1.5rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-header h4 {
    font-size: 1.3rem;
    color: var(--color-white);
}

.price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-desc {
    color: var(--color-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Features Parallax */
.features-parallax {
    background: url('https://images.unsplash.com/photo-1574126154517-d1e0d89e7344?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
    padding: 6rem 0;
    position: relative;
    margin-top: 2rem;
}

.features-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.features-parallax .relative {
    position: relative;
    z-index: 2;
}

.features-parallax h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.f-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.f-icon i {
    font-size: 3rem;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
}

.f-icon span {
    font-weight: 600;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: #181818;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-info {
    padding: 3rem;
    background: #111;
    /* Slightly darker */
    color: var(--color-white);
    border-right: 1px solid #333;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.bulk-order-msg {
    margin-top: 2.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid rgba(230, 57, 70, 0.5);
    backdrop-filter: blur(5px);
}

.info-item h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p,
.info-item a {
    color: var(--color-gray);
}

.info-item a:hover {
    color: var(--color-primary);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
    border: 1px solid #333;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0;
    color: #666;
    border-top: 1px solid #222;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--color-primary);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .exp-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }

    .features-list {
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        border-right: none;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid #333;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #121212;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        border-left: 1px solid #333;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--color-white) !important;
        font-size: 1.5rem !important;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active {
        color: var(--color-white);
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Brand Colors */
.social-item:hover .ys {
    background: #EA004B;
    border-color: #EA004B;
    box-shadow: 0 5px 15px rgba(234, 0, 75, 0.4);
}

.social-item:hover .ty {
    background: #F27A1A;
    border-color: #F27A1A;
    box-shadow: 0 5px 15px rgba(242, 122, 26, 0.4);
}

/* Social Links with Text */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.social-item span {
    font-size: 0.8rem;
    color: var(--color-gray);
    transition: var(--transition);
}

.social-item:hover span {
    color: var(--color-white);
}

/* Getir Brand Color */
.social-item:hover .gt {
    background: #5D3EBC;
    /* Getir Purple */
    border-color: #5D3EBC;
    box-shadow: 0 5px 15px rgba(93, 62, 188, 0.4);
}