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

html,body {
    font-family: Arial, sans-serif;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(142, 36, 170, 0.95) 0%, rgba(233, 30, 99, 0.95) 50%, rgba(255, 96, 144, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo span {
    font-size: 28px;
    font-weight: bold;
    color: #ffb300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
}

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

/* Logo Image Styles */
.hero-logo-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

.about-logo-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

.menu-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8e24aa 0%, #e91e63 50%, #ff6090 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 80vh;
}

.hero-logo h1 {
    font-size: 80px;
    color: #ffb300;
    margin-top: 20px;
    letter-spacing: 5px;
    position: relative;
}

.subtitle {
    font-size: 24px;
    color: #ffb300;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* Sandviç Container */
.sandwich-container {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
}

/* .sandwich-img {
    width: 500px;
    height: auto;
    animation: sandwich-float 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
} */

@keyframes sandwich-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Vegetables */
.floating-vegetables {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vegetable {
    position: absolute;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
    opacity: 0.9;
    z-index: 10;
}

/* Hamburger yanındaki biberler */
.sandwich-pepper {
    position: absolute;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
    opacity: 0.95;
    z-index: 12; /* Hamburger'ın üstünde */
}

.left-pepper {
    top: 20%;
    left: 15%;
    transform: translateY(-50%) rotate(-25deg);
}

.right-pepper {
    top: 20%;
    right: 15%;
    transform: translateY(-50%) rotate(25deg);
}

/* Sol taraf sebzeleri (yaprak türü) - Simetrik */
.left-1 {
    top: 15%;
    left: 8%;
    width: 100px;
    transform: rotate(-15deg);
}

.left-2 {
    top: 65%;
    left: 12%;
    width: 90px;
    transform: rotate(-20deg);
}

.left-3 {
    top: 40%;
    left: 3%;
    width: 80px;
    transform: rotate(-30deg);
}

/* Sağ taraf sebzeleri (domates türü) - Simetrik */
.right-1 {
    top: 15%;
    right: 8%;
    width: 100px;
    transform: rotate(15deg);
}

.right-2 {
    top: 65%;
    right: 12%;
    width: 90px;
    transform: rotate(20deg);
}

.right-3 {
    top: 40%;
    right: 3%;
    width: 80px;
    transform: rotate(30deg);
}

/* Üst ve alt sebzeler */
.top-1 {
    top: 1%;
    left: 48%;
    width: 85px;
    transform: rotate(-35deg);
}

.bottom-1 {
    bottom: 8%;
    right: 48%;
    width: 85px;
    transform: rotate(35deg);
}

/* Float Animasyonları */
.float-1 {
    animation: float-gentle 6s ease-in-out infinite;
}

.float-2 {
    animation: float-gentle 5s ease-in-out infinite 1s;
}

.float-3 {
    animation: float-gentle 7s ease-in-out infinite 2s;
}

.float-4 {
    animation: float-gentle 4s ease-in-out infinite;
}

.float-5 {
    animation: float-gentle 5.5s ease-in-out infinite;
}

.float-6 {
    animation: float-gentle 6.5s ease-in-out infinite 2.5s;
}

.float-7 {
    animation: float-gentle 4.5s ease-in-out infinite 3s;
}

@keyframes float-gentle {
    0%, 100% { 
        transform: translateY(0) rotate(var(--initial-rotation, 0deg));
    }
    25% { 
        transform: translateY(-8px) rotate(calc(var(--initial-rotation, 0deg) + 3deg));
    }
    50% { 
        transform: translateY(-15px) rotate(var(--initial-rotation, 0deg));
    }
    75% { 
        transform: translateY(-8px) rotate(calc(var(--initial-rotation, 0deg) - 3deg));
    }
}

/* Rotating Vegetables - Eski stilleri kaldırıyoruz */
.rotating-vegetables {
    display: none;
}

.self-rotating-vegetables {
    display: none;
}

.self-rotating-vegetable {
    display: none;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 50%, #3f51b5 100%);
    min-height: 100vh;
    position: relative;
    padding: 80px 0 80px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-hero {
    text-align: center;
}

.about-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-text h2 {
    font-size: 60px;
    color: #ffb300;
    margin: 20px 0 10px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-text .subtitle {
    font-size: 24px;
    color: #ffb300;
    letter-spacing: 2px;
}

.about-title h1 {
    font-size: 64px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffb300, #ffd54f);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 179, 0, 0.4);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    color: #ffb300;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffb300;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 50%, #00bcd4 100%);
    min-height: 100vh;
    padding: 100px 20px 80px;
}

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

.menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-logo h2 {
    font-size: 36px;
    color: #ffb300;
}

.menu-header h1 {
    font-size: 40px;
    color: white;
}

.menu-header h1 span {
    font-weight: 300;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.menu-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 179, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.category-title {
    color: #ffb300;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border-bottom: 2px solid rgba(255, 179, 0, 0.3);
    padding-bottom: 15px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Special grid layout for beverages */
.beverages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 179, 0, 0.3);
}

.item-info {
    flex: 1;
    margin-right: 20px;
}

.menu-item h3 {
    color: #ffb300;
    font-size: 20px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.menu-item:hover h3 {
    color: #ffd54f;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s;
}

.menu-item:hover p {
    color: white;
}

.price {
    color: #4caf50;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s;
}

.menu-item:hover .price {
    color: #66bb6a;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 700px) {
    .header {
        padding: 5px 0;
        min-height: 60px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
        height: 60px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, rgba(142, 36, 170, 0.95) 0%, rgba(233, 30, 99, 0.95) 50%, rgba(255, 96, 144, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        gap: 25px;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 15px 30px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        width: 200px;
        text-align: center;
    }
    
    /* Hero section mobile styles */
    .hero-logo {
        height: 70vh;
    }
    
    .sandwich-img {
        width: 500px;
    }
    
    .hero-logo-img {
        width: 300px;
        height: 300px;
    }
    
    /* Mobile vegetable positioning */
    .vegetable {
        width: 60px;
    }
    
    .sandwich-pepper {
        width: 80px;
    }
    
    .left-pepper,
    .right-pepper {
        display: none;
    }
    
    .left-1, .left-2, .left-3 {
        left: 2%;
    }
    
    .right-1, .right-2, .right-3 {
        right: 2%;
    }
    
    .left-1 { width: 50px; }
    .left-2 { width: 40px; }
    .left-3 { width: 45px; }
    .right-1 { width: 50px; }
    .right-2 { width: 40px; }
    .right-3 { width: 45px; }
    .top-1 { width: 40px; }
    .bottom-1 { width: 40px; }
    
    /* About section mobile styles */
    .about-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .about-logo-img {
        width: 200px;
        height: 200px;
    }
    
    .about-title h1 {
        font-size: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .about-card {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    /* Menu section mobile styles */
    .menu-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .menu-header h1 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .menu-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 8px;
        padding: 15px 10px;
    }
}

@media (min-width: 701px) {
    .hamburger {
        display: none;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-logo-img {
        width: 400px;
        height: auto;
    }
    
    .hero-logo h1 {
        font-size: 50px;
    }
    
    .sandwich-img {
        width: 900px;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-logo-img {
        width: 250px;
        height: 250px;
    }
    
    .brand-text h2 {
        font-size: 40px;
    }
    
    .about-title h1 {
        font-size: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 50%, #9c27b0 100%);
    min-height: 100vh;
    padding: 100px 0 80px;
    position: relative;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 64px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

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

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

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

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-icon {
    font-size: 24px;
}

.email-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    width: 100%;
}

.email-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.email-icon {
    font-size: 24px;
}

.email-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffb300;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 17px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-header h1 {
        font-size: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .menu-header h1 {
        font-size: 30px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .menu-card {
        padding: 25px;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .item-info {
        margin-right: 0;
    }
    
    .price {
        align-self: flex-end;
    }
    
    .beverages-grid {
        grid-template-columns: 1fr;
    }
}