/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header styles */
.header {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo span {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
}

.logo_img {
    width: 160px !important; 
    height: 160px !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex:1; 
    justify-content:flex-end;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Logo visibility fixes */
.nav-logo-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 120px; 
    height:120px;
}

.nav-logo-center div {
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 32px rgba(44,24,16,0.22) !important;
    border: 4px solid #d4a574 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nav-logo-center img {
    object-fit: contain !important;
    display: block !important;
    border-radius: 50% !important;
    background: transparent !important;
    filter: contrast(1.3) brightness(1.2) saturate(1.1) !important;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(74, 44, 26, 0.7)),
                url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Menu section */
.menu-section {
    padding: 4rem 0;
    background-color: white;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.menu-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Category filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #d4a574;
    color: #2c1810;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

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

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    height: 200px;
    background: linear-gradient(45deg, #f4f1eb, #e8e0d5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-image .icon {
    font-size: 3rem;
    color: #d4a574;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    font-weight: 600;
}

.menu-item-price {
    font-weight: 600;
    color: #d4a574;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.menu-item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.menu-item-category {
    display: inline-block;
    background-color: #f8f4f0;
    color: #8b5a3c;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #f4f1eb 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="coffee-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4a574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23coffee-pattern)"/></svg>');
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 3rem;
    position: relative;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4a574, #b8945f);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    animation: pulse 2s infinite;
}

.coming-soon-badge i {
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
}

.about-message {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.about-icon {
    font-size: 4rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    display: block;
}

.about-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

.about-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-message p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #8b5a3c;
}

/* Contact section */
.contact-section {
    padding: 6rem 0;
    background-color: white;
}

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

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574, #b8945f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-form-container {
    display: flex;
    align-items: center;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    width: 100%;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c1810;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #d4a574, #b8945f);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.submit-btn i {
    font-size: 1rem;
}

.map-container {
    text-align: center;
}

.map-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    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-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #d4a574;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #d4a574;
}

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

/* Hamburger menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }

    .logo_img {
        width: 160dp;
        height: 160dp;
    }
    
    .nav-container {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 15px;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    /* Mobilde logo sol üstte */
    .nav-logo-center {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex: 0 0 auto;
        margin: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 5;
    }
    
    .nav-logo-center div {
        height: 110px !important;
        width: 110px !important;
        padding: 12px !important;
        background: white !important;
        border-radius: 50% !important;
        box-shadow: 0 8px 32px rgba(44,24,16,0.22) !important;
        border: 3px solid #d4a574 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-logo-center img {
        height: 110px !important;
        width: 110px !important;
        max-width: 110px !important;
        max-height: 110px !important;
        object-fit: contain !important;
        display: block !important;
        border-radius: 50% !important;
    }
    
    /* Mobilde yazı ortada */
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 1;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .logo span {
        font-size: 0.8rem;
        display: block;
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 0.5rem 0;
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 10px;
        display: block;
    }
    
    .logo {
        flex: 0 0 auto;
        margin-left: 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .logo span {
        font-size: 0.7rem;
        display: none;
    }
    
    .nav-logo-center {
        flex: 0 0 auto;
        transform: scale(0.6);
        margin: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-logo-center div {
        height: 110px !important;
        width: 110px !important;
        padding: 12px !important;
        background: white !important;
        border-radius: 50% !important;
        box-shadow: 0 8px 32px rgba(44,24,16,0.22) !important;
        border: 3px solid #d4a574 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-logo-center img {
        height: 110px !important;
        width: 110px !important;
        max-width: 110px !important;
        max-height: 110px !important;
        object-fit: contain !important;
        display: block !important;
        border-radius: 50% !important;
    }
    
    .nav-links {
        flex: 0 0 auto;
        gap: 0.3rem;
    }
    
    .nav-links a {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .hero {
        margin-top: 50px;
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-header h2 {
        font-size: 2rem;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-message {
        padding: 2rem;
    }
    
    .about-message h3 {
        font-size: 1.5rem;
    }
    
    .about-message p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.2rem 0;
    }
    
    .navbar {
        padding: 0.2rem 0;
    }
    
    .nav-container {
        gap: 0.3rem;
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .nav-logo-center {
        left: 10px;
    }
    
    .nav-logo-center div {
        height: 90px !important;
        width: 90px !important;
        padding: 10px !important;
    }
    
    .nav-logo-center img {
        height: 90px !important;
        width: 90px !important;
        max-width: 90px !important;
        max-height: 90px !important;
    }
    
    .hamburger-menu {
        right: 10px;
    }
    
    .nav-logo-center div {
        height: 90px !important;
        width: 90px !important;
        padding: 10px !important;
    }
    
    .nav-logo-center img {
        height: 80px !important;
        width: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
    }
    
    .nav-links a {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .hero {
        margin-top: 40px;
        height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .menu-item-content {
        padding: 1rem;
    }
    
    .menu-item-title {
        font-size: 1.1rem;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-message {
        padding: 1.5rem;
    }
    
    .coming-soon-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

.menu-loading {
    width: 100%;
    text-align: center;
    color: #bfa77a;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.menu-category-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    font-weight: 700;
    margin: 2.2rem 0 0.2rem 0;
    padding: 0;
    background: none;
    border: none;
    letter-spacing: 0.01em;
    display: block;
    text-align: left;
}

.menu-category-underline {
    width: 48px;
    height: 2.5px;
    background: #d4a574;
    border-radius: 2px;
    margin-bottom: 1.1rem;
    margin-left: 0;
}

.menu-category-separator {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 2.5rem 0 2.5rem 0;
    border: none;
    display: block;
}

#about, #menu, #contact {
    scroll-margin-top: 140px;
}

@media (max-width: 768px) {
    #about, #menu, #contact {
        scroll-margin-top: 70px;
    }
}

@media (max-width: 480px) {
    #about, #menu, #contact {
        scroll-margin-top: 60px;
    }
} 