<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --background-color: #f5f6fa;
    --card-background: #ffffff;
    --text-color: #2c3e50;
    --background-image: url('../img/1.svg'); 
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    background-image: var(--background-image); 
    background-size: cover; 
    background-position: center; 
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    

}

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

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 100px;
}

.navbar2 {
    background-color: #e9ecef;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 1.1rem;                 
} */

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-links a.active::after {
    width: 100%;
}


/*Yemek gÃ¼nÃ¼n tarihi olunca kÄ±rmÄ±zÄ± border oldu */
.plt-today {
    border: 3px solid var(--secondary-color);
}

.tarih {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0.5rem 0;
    display: inline-block;
    padding: 0.3rem 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
}

.tarih2 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 1.1rem 0;
    display: inline-block;
    padding: 0.3rem 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
}

.menu-list {
    list-style: none;
    padding: 1rem 0;
}

.menu-list li {
    padding: .5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.menu-list2 {
    list-style: none;
    padding: 1rem 0;
}

.menu-list2 li {
    padding: .5rem 0;
    border-bottom: 1px solid #eee;
}

.kalori {
    margin-top: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.kalori2 {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.kalori2 strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.kalori strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.menu-index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1rem;
    margin-top: 2rem;

}

.aylik-menu {
    padding: 3rem 0;
}

.aylik-menu h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.aylik-menu h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-top: auto;  
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position:static;
}

.footer-sabit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: fixed; 
    bottom: 0; 
    width: 100%; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100; 
}

/* Ä°lk animasyon: Saat yÃ¶nÃ¼nde dÃ¶nme */
@keyframes spin-clockwise {
    0% {
        transform: rotateY(0deg); 
    }
    100% {
        transform: rotateY(360deg); 
    }
}

/* Ä°kinci animasyon: Saat yÃ¶nÃ¼nÃ¼n tersine dÃ¶nme */
@keyframes spin-counterclockwise {
    0% {
        transform: rotateY(360deg); 
    }
    100% {
        transform: rotateY(0deg); 
    }
}

.logo {
    width: 100px;
    height: auto;
    z-index: 1;
    transform-style: preserve-3d; 
    animation: spin-clockwise 2s ease-in-out 1, 
               spin-counterclockwise 2s ease-in-out 1;            /*  animasyon efekti */
    animation-delay: 2s, 4s; 
    animation-fill-mode: forwards; 
}

.menu-card {
    margin: 0.5rem 0;
    padding: 0.8rem;
    background: var(--card-background);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    opacity: 0; 
    animation: slideInUp 0.5s ease-out forwards; 
}

.menu-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}

/* Sayfa yÃ¼kleme animasyonu - kartlar yavaÅŸÃ§a yukarÄ± gelir */
@keyframes slideInUp {
    0% {
        transform: translateY(40px); 
        opacity: 0;
    }
    100% {
        transform: translateY(0); 
        opacity: 1;
    }
}

.menu-card:nth-child(1) {
    animation-delay: 0s; 
}

.menu-card:nth-child(2) {
    animation-delay: 0.2s; 
}

.menu-card:nth-child(3) {
    animation-delay: 0.4s; 
}

.menu-card:nth-child(4) {
    animation-delay: 0.6s; 
}

.menu-card:nth-child(5) {
    animation-delay: 0.8s; 
}

.menu-card:nth-child(6) {
    animation-delay: 1s; 
}

.menu-card:nth-child(7) {
    animation-delay: 1.2s; 
}

.menu-card:nth-child(8) {
    animation-delay: 1.4s; 
}

.menu-card:nth-child(9) {
    animation-delay: 1.6s; 
}

.menu-card:nth-child(10) {
    animation-delay: 1.8s; 
}

.menu-card:nth-child(11) {
    animation-delay: 2s; 
}

.menu-card:nth-child(12) {
    animation-delay: 2.2s; 
}

.menu-card:nth-child(13) {
    animation-delay: 2.4s; 
}

.menu-card:nth-child(14) {
    animation-delay: 2.6s; 
}

.menu-card:nth-child(15) {
    animation-delay: 2.8s; 
}

.menu-card:nth-child(16) {
    animation-delay: 3s; 
}

.menu-card:nth-child(17) {
    animation-delay: 3.2s; 
}

.menu-card:nth-child(18) {
    animation-delay: 3.4s; 
}

.menu-card:nth-child(19) {
    animation-delay: 3.6s; 
}

.menu-card:nth-child(20) {
    animation-delay: 3.8s; 
}

.menu-card:nth-child(21) {
    animation-delay: 4s; 
}

.menu-card:nth-child(22) {
    animation-delay: 4.2s; 
}

.menu-card:nth-child(23) {
    animation-delay: 4.4s; 
}

.menu-card:nth-child(24) {
    animation-delay: 4.6s; 
}

.menu-card:nth-child(25) {
    animation-delay: 4.8s; 
}

.menu-card:nth-child(26) {
    animation-delay: 5s; 
}

.menu-card:nth-child(27) {
    animation-delay: 5.2s; 
}

.menu-card:nth-child(28) {
    animation-delay: 5.4s; 
}

.menu-card:nth-child(29) {
    animation-delay: 5.6s; 
}

.menu-card:nth-child(30) {
    animation-delay: 5.8s; 
}


/* MenÃ¼ Sekmesi Ä°Ã§in Animasyon - Ana Sayfa */
@keyframes fadeInScale {
    0% {
        opacity: 0; 
        transform: scale(0.9); 
    }
    100% {
        opacity: 1; 
        transform: scale(1); 
    }
}

.menu-section {
    margin: 2rem 0.5rem;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    animation: fadeInScale 0.8s ease-out forwards; 
}

.menu-section:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}

/* Hamburger menÃ¼ stili */
      .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 23px;
        cursor: pointer;
      }

      .hamburger div {
        height: 4px;
        background-color: white;
        border-radius: 5px;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
        font-size: 1.1rem;
        transition: transform 0.3s ease;
      }

      /* Mobilde menÃ¼ gizli olacak */
      .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: var(--primary-color);
        width: 200px;
        padding: 20px;
        box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.2);
      }

      /* Mobile menÃ¼ gÃ¶rÃ¼nÃ¼r olduÄŸunda hamburger menÃ¼ ikonu deÄŸiÅŸir */
      .hamburger.active div {
        background-color: var(--secondary-color);
        transform: rotate(45deg);
        transition: 0.3s ease;
      }

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

      .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg);
      }

    @media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo-container {
        flex: 1 1 100%;
        text-align: center;
    }

    .nav-links {
        display: none;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 1rem; 
        padding: 0.5rem 1rem; 
    }

    .nav-links a {
        white-space: nowrap; 
    }

    .menu-index {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
        gap: 0rem;
        margin-top: 2rem;  
    }

    .footer-sabit {      
        position: relative; 
    }

    .navbar2 {
        position: relative;
        min-height: 75px;
        background-color: var(--primary-color);
    }

    .navbar {
        position: relative;
        box-shadow: none;
    }    

    .hamburger {
        display: flex;
    }
    
    }
</pre></body></html>