/* Genel Stil */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #e6f7ff;
    color: #333;
    min-height: 100vh;
    overflow-y: auto;
}

body::before {
    content: 'Kavurmacı Hasan Usta';
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 3em;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    color: rgba(107, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: transparent;
    padding: 10px 0;
    text-align: center;
    position: static;
}

header .logo img {
    height: 500px;
    margin: 10px 0;
    transition: transform 1s ease, opacity 1s ease;
}

header nav {
    position: relative;
    z-index: 1000;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8em;
    padding: 5px 10px;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

header nav ul li a:hover {
    color: #6b0000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Menü Sekmesi */
.menu, .about, .contact {
    padding: 50px 20px;
    text-align: center;
    margin-top: -150px;
    background-color: transparent;
    opacity: 0;
    min-height: calc(100vh - 60px);
    position: relative;
    z-index: 1;
    display: none;
}

.menu h2, .about h2, .contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #6b0000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 247, 255, 0.8));
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(107, 0, 0, 0.2);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 0, 0, 0.2);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.menu-content {
    padding: 15px;
}

.menu-content h3 {
    font-size: 1.4em;
    color: #6b0000;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Georgia', serif;
}

.menu-content p {
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hakkımızda Sekmesi */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-text-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 247, 255, 0.8));
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(107, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 0, 0, 0.2);
}

.about-text-card p {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-image-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 247, 255, 0.8));
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(107, 0, 0, 0.2);
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 0, 0, 0.2);
}

.about-image-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    cursor: pointer;
}

/* İletişim Sekmesi */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 247, 255, 0.8));
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(107, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 0, 0, 0.2);
}

.contact-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; min-height: 160px; }
.contact-card:nth-child(2) { grid-column: 1 / 3; grid-row: 2 / 3; min-height: 300px; padding: 0; }
.contact-card:nth-child(3) { grid-column: 2 / 3; grid-row: 1 / 2; min-height: 80px; }
.contact-card:nth-child(4) { grid-column: 2 / 3; grid-row: 3 / 4; min-height: 80px; }
.contact-card:nth-child(5) { grid-column: 1 / 2; grid-row: 3 / 4; min-height: 100px; }

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-header i {
    font-size: 2em;
    color: #6b0000;
}

.contact-header h3 {
    font-size: 1.4em;
    color: #6b0000;
    margin: 0;
    font-family: 'Georgia', serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card p {
    font-size: 1.1em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.contact-card p i {
    font-size: 1.2em;
    color: #6b0000;
}

.contact-card a {
    color: #6b0000;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-map {
    padding: 0;
    background: none;
    box-shadow: none;
    cursor: default;
    border: none;
}

/* Footer */
footer {
    color: #333;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer p {
    padding: 5px 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Animasyonlar */
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { opacity: 1 !important; animation: fadeIn 0.8s ease-in; }

/* Mobil Uyum */
@media (max-width: 768px) {
    body { overflow-y: auto; }
    body::before { display: none; }
    header { position: static; padding: 0; }
    header .container { padding: 0; }
    header .logo img { height: 400px; animation: slideDown 0.8s ease-out forwards; }
    header .logo img:active { transform: scale(1.02); }
    header nav ul { flex-direction: column; top: -150px; left: 50%; transform: translateX(-50%); width: 100%; }
    header nav ul li { margin: 12px 0; animation: slideIn 0.8s ease-out forwards; animation-delay: calc(0.1s * var(--i)); }
    header nav ul li a { font-size: 1.2em; background: rgba(255, 255, 255, 0.2); border-radius: 5px; padding: 8px 12px; }
    header nav ul li a:active { background: rgba(255, 255, 255, 0.4); color: #6b0000; }
    .menu, .about, .contact { padding: 30px 20px; padding-top: 150px; display: none; }
    .menu h2, .about h2, .contact h2 { font-size: 1em; }
    .menu-items { grid-template-columns: 1fr; }
    .menu-card img { height: 150px; }
    .about-content { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr; }
    .about-image-card img { height: 150px; }
    .contact-info { grid-template-columns: 1fr; gap: 15px; }
    .contact-card { min-height: auto !important; }
    .contact-card:nth-child(2) { min-height: 250px; }
    .contact-card p { font-size: 0.9em; }
    footer { background-color: transparent; box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); }
    footer p { font-size: 1.1em; }
}