/*
Theme Name: CoffeeLA Cafe
Theme URI: https://coffeelacafe.com
Author: CoffeeLA Cafe Team
Author URI: https://coffeelacafe.com
Description: Premium kahve deneyimi sunan modern ve minimalist cafe teması. Özel menü, rezervasyon sistemi ve responsive tasarım özellikleri.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coffeela
Tags: cafe, coffee, restaurant, responsive-layout, custom-menu, featured-images, theme-options
*/

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

:root {
    --primary-color: #6F4E37;
    --secondary-color: #C4A57B;
    --accent-color: #8B4513;
    --text-dark: #2C1810;
    --text-light: #6B5D54;
    --bg-light: #FAF7F2;
    --bg-white: #FFFFFF;
    --border-color: #E5DDD5;
    --shadow-light: rgba(111, 78, 55, 0.1);
    --shadow-medium: rgba(111, 78, 55, 0.15);
    --shadow-dark: rgba(111, 78, 55, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(111, 78, 55, 0.08);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(250, 247, 242, 0.99);
    box-shadow: 0 4px 30px rgba(111, 78, 55, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo .logo-link:hover {
    transform: scale(1.05);
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-logo span {
    color: var(--secondary-color);
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover h2 {
    transform: scale(1.1);
    color: var(--accent-color);
}

.logo-link:hover h2 span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown Menu Styles */
.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-text {
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(111, 78, 55, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.menu-item-has-children:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.dropdown-menu .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu .nav-link::after {
    display: none;
}

/* Multi-level dropdown support */
.dropdown-menu .menu-item-has-children {
    position: relative;
}

.dropdown-menu .menu-item-has-children > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
}

.dropdown-menu .menu-item-has-children:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Category headers in dropdown */
.dropdown-menu .nav-link[title*="Kahveler"],
.dropdown-menu .nav-link[title*="Meşrubatlar"],
.dropdown-menu .nav-link[title*="Mocktails"],
.dropdown-menu .nav-link[title*="Yiyecekler"],
.dropdown-menu .nav-link[title*="Tost"],
.dropdown-menu .nav-link[title*="Waffle"] {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu .nav-link[title*="Kahveler"]:hover,
.dropdown-menu .nav-link[title*="Meşrubatlar"]:hover,
.dropdown-menu .nav-link[title*="Mocktails"]:hover,
.dropdown-menu .nav-link[title*="Yiyecekler"]:hover,
.dropdown-menu .nav-link[title*="Tost"]:hover,
.dropdown-menu .nav-link[title*="Waffle"]:hover {
    background: var(--primary-color);
    color: white;
    padding-left: 1.5rem;
}

/* Product items styling */
.dropdown-menu .nav-link:not([title*="Kahveler"]):not([title*="Meşrubatlar"]):not([title*="Mocktails"]):not([title*="Yiyecekler"]):not([title*="Tost"]):not([title*="Waffle"]) {
    position: relative;
}

.dropdown-menu .nav-link:not([title*="Kahveler"]):not([title*="Meşrubatlar"]):not([title*="Mocktails"]):not([title*="Yiyecekler"]):not([title*="Tost"]):not([title*="Waffle"]):hover {
    padding-left: 2rem;
}

/* Special styling for main menu items */
.dropdown-menu > li:first-child > .nav-link,
.dropdown-menu > li:nth-child(2) > .nav-link,
.dropdown-menu > li:nth-child(3) > .nav-link,
.dropdown-menu > li:nth-child(4) > .nav-link,
.dropdown-menu > li:nth-child(5) > .nav-link,
.dropdown-menu > li:nth-child(6) > .nav-link,
.dropdown-menu > li:nth-child(7) > .nav-link,
.dropdown-menu > li:nth-child(8) > .nav-link {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu > li:first-child > .nav-link:hover,
.dropdown-menu > li:nth-child(2) > .nav-link:hover,
.dropdown-menu > li:nth-child(3) > .nav-link:hover,
.dropdown-menu > li:nth-child(4) > .nav-link:hover,
.dropdown-menu > li:nth-child(5) > .nav-link:hover,
.dropdown-menu > li:nth-child(6) > .nav-link:hover,
.dropdown-menu > li:nth-child(7) > .nav-link:hover,
.dropdown-menu > li:nth-child(8) > .nav-link:hover {
    background: var(--primary-color);
    color: white;
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/Dış_mekan.png') center/cover no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

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

.hero-text h1 span {
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 8rem 0 6rem 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--shadow-light);
}

/* Brewing Section */
.brewing {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.brewing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brewing-tag {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.brewing-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.brewing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    flex-wrap: wrap;
}

.brewing-center {
    flex: 0 0 auto;
    text-align: center;
    margin: 0 2rem;
    order: 2;
}

.brewing-methods {
    display: flex;
    gap: 4rem;
    flex: 2;
    flex-wrap: wrap;
    justify-content: center;
    order: 1;
}

.brewing-center-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 40px var(--shadow-light);
    border: 8px solid var(--bg-light);
}

.brewing-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brewing-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.brewing-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
    border-color: var(--secondary-color);
}

.brewing-method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.brewing-method-content {
    flex: 1;
}

.brewing-method-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brewing-method-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brewing-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .brewing-center {
        order: -1;
        flex: none;
    }
    
    .brewing-methods {
        flex-direction: column;
        gap: 2rem;
    }
    
    .brewing-center-image {
        width: 200px;
        height: 200px;
    }
    
    .brewing-header h2 {
        font-size: 2rem;
    }
}

/* Professional Menu Styles */
.menu-professional {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.menu-header {
    text-align: center;
    margin-bottom: 80px;
}

.menu-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.menu-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.sub-section {
    margin-bottom: 60px;
}

.sub-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item-professional {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.menu-item-professional:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--secondary-color);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.item-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.item-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-professional {
        padding: 80px 0 60px;
    }
    
    .menu-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item-professional {
        padding: 20px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-header h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .sub-section h3 {
        font-size: 1.5rem;
    }
    
    .menu-item-professional {
        padding: 15px;
    }
}
.menu {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

/* Menu Categories */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    user-select: none;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.15);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.2);
}

.category-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.menu-item {
    display: block;
}

.menu-item.hidden {
    display: none;
}

.menu-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.menu-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.menu-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-badge.chef-special {
    background: var(--accent-color);
}

.menu-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.menu-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.3rem;
}

.menu-header .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.menu-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.menu-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
}

.size-options {
    font-weight: 500;
    color: var(--primary-color);
}

.prep-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.prep-time::before {
    content: '⏱';
    color: var(--secondary-color);
}

.menu-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin-bottom: 0;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-light);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
    border-radius: 15px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-light);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Dropdown Menu */
    .nav-menu .menu-item-has-children > .nav-link {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin: 0.5rem 0;
        border-radius: 0;
        min-width: auto;
        padding: 0;
    }

    .dropdown-menu .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu .nav-link:hover {
        padding-left: 1rem;
        background: transparent;
        color: var(--primary-color);
    }

    .dropdown-arrow {
        transform: none !important;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .btn-primary, .btn-secondary {
        width: 200px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .about, .brewing, .menu, .contact {
        padding: 4rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: white;
}

/* Focus States */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
