/* ========================================
   MYRIAD PRO FONT
   ======================================== */
@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadPro-Regular.woff2') format('woff2'),
         url('fonts/MyriadPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadPro-Semibold.woff2') format('woff2'),
         url('fonts/MyriadPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadPro-Bold.woff2') format('woff2'),
         url('fonts/MyriadPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   GENEL STILLER
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFFFFF;
    --primary-light: #FFFFFF;
    --primary-dark: #e8e8e8;
    --accent-color: #FFD700;
    --bg-cream: #e23862;
    --bg-warm: #d63058;
    --text-dark: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.75);
    --white: #e23862;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Myriad Pro', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   ANA SAYFA - HOME PAGE
   ======================================== */
.home-page {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(226, 56, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(226, 56, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(226, 56, 98, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   ANA MODAL
   ======================================== */
.main-modal {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    animation: modalSlideUp 0.6s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Alanı */
.logo-container {
    margin-bottom: 30px;
}


.logo-container {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.site-logo {
    max-width: 200px;
    height: auto;
}

.header-logo {
    background: #FFFFFF;
    padding: 8px 15px;
    border-radius: 10px;
}

.header-site-logo {
    height: 35px;
    width: auto;
}

/* Sosyal Medya Butonları */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.tiktok {
    background: #000000;
}

/* Navigasyon Butonları */
.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
}

.nav-btn:hover {
    background: #FFFFFF;
    color: #e23862;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.nav-btn.menu-btn {
    background: #FFFFFF;
    color: #e23862;
    border: none;
    font-weight: 600;
}

.nav-btn.menu-btn:hover {
    background: #f0f0f0;
    color: #e23862;
}

.nav-btn i {
    font-size: 20px;
}

/* İletişim Bilgileri */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #FFFFFF;
}

.contact-item i {
    color: #FFFFFF;
}

/* ========================================
   HAKKIMIZDA MODAL
   ======================================== */
.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.about-modal.active {
    display: flex;
}

.about-modal-content {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.4s ease-out;
}

.close-about {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.close-about:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.about-modal-content h2 {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.about-features {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature i {
    font-size: 24px;
    color: #FFFFFF;
}

.feature span {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

/* ========================================
   MENÜ SAYFASI
   ======================================== */
.menu-page {
    background: #FFFFFF;
    min-height: 100vh;
    padding-bottom: 30px;
}

/* Header */
.menu-header {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 50;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #FFFFFF;
    color: #e23862;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e23862;
}

.header-logo i {
    font-size: 24px;
}

.header-logo span {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.header-spacer {
    width: 40px;
}

/* Menü Başlığı */
.menu-title {
    text-align: center;
    padding: 25px 20px 15px;
    background: #FFFFFF;
}

.menu-title h2 {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    font-size: 26px;
    color: #e23862;
    margin-bottom: 5px;
}

.menu-title p {
    font-size: 13px;
    color: #e23862;
    opacity: 0.7;
}

/* ========================================
   AKORDİYON MENÜ
   ======================================== */
.accordion-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
}

.accordion-header:hover {
    background: var(--bg-warm);
}

.accordion-header.active {
    background: #FFFFFF;
}

.accordion-title {
    display: flex;
    align-items: center;
}

.accordion-title span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.accordion-header.active .accordion-title span {
    color: #e23862;
}

.accordion-info {
    display: flex;
    align-items: center;
}

.accordion-icon {
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.accordion-header.active .accordion-icon {
    color: #e23862;
    transform: rotate(180deg);
}

/* Akordeon İçerik */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--bg-cream);
}

.accordion-content.open {
    max-height: 2000px;
    transition: max-height 0.6s ease-in;
}

.accordion-content .menu-item {
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.accordion-content .menu-item:last-child {
    border-bottom: none;
}

.accordion-content .menu-item:hover {
    background: var(--bg-warm);
    transform: none;
}

/* Akordeon item animasyonu */
.accordion-content.open .menu-item {
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
}

.accordion-content.open .menu-item:nth-child(1) { animation-delay: 0.05s; }
.accordion-content.open .menu-item:nth-child(2) { animation-delay: 0.1s; }
.accordion-content.open .menu-item:nth-child(3) { animation-delay: 0.15s; }
.accordion-content.open .menu-item:nth-child(4) { animation-delay: 0.2s; }
.accordion-content.open .menu-item:nth-child(5) { animation-delay: 0.25s; }
.accordion-content.open .menu-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Menü Listesi */
.menu-container {
    padding: 20px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    animation: itemFadeIn 0.4s ease-out;
}

@keyframes itemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Item Image - 1/4 genişlik */
.item-image {
    width: 25%;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

/* Item Info - Orta kısım */
.item-info {
    flex: 1;
    padding: 0 15px;
    min-width: 0;
}

.item-name {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.item-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Item Price - Sağ taraf */
.item-price {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    padding-left: 10px;
}

/* ========================================
   GÜNÜN TATLISI POPUP
   ======================================== */
.daily-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.daily-popup.hidden {
    display: none;
}

.popup-content {
    background: var(--white);
    border-radius: 25px;
    padding: 25px;
    max-width: 350px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popupBounce 0.5s ease-out;
}

@keyframes popupBounce {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.popup-badge i {
    font-size: 14px;
}

.popup-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 4px solid #FFFFFF;
}

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

.popup-content h3 {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.popup-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.popup-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.new-price {
    font-family: 'Myriad Pro', 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
}

.popup-discount {
    display: inline-block;
    background: #FFFFFF;
    color: #e23862;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 768px) {
    .main-modal {
        max-width: 450px;
    }

    .modal-content {
        padding: 50px 40px;
    }

    .logo i {
        font-size: 60px;
    }

    .logo h1 {
        font-size: 32px;
    }

    .social-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .nav-btn {
        padding: 20px 35px;
        font-size: 17px;
    }

    .menu-container {
        max-width: 700px;
        margin: 0 auto;
    }

    .menu-item {
        padding: 15px;
    }

    .item-name {
        font-size: 18px;
    }

    .item-desc {
        font-size: 13px;
    }

    .item-price {
        font-size: 20px;
    }

    .accordion-header {
        padding: 20px 25px;
    }

    .accordion-title span {
        font-size: 18px;
    }

    .accordion-title i {
        font-size: 24px;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .menu-container {
        max-width: 800px;
    }

    .accordion-content .menu-item {
        padding: 18px 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
    display: none !important;
}

/* Scroll bar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #c92e55;
}

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

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

/* Bordo vurgular */
.menu-item:hover .item-name {
    color: #FFFFFF;
}
