:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #f8f8f8;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.order-phone {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.order-phone:hover {
    background-color: #a01830;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a01830;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Menu Section */
.menu-section {
    padding: 5rem 5%;
    background-color: var(--accent-color);
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.menu-item-content {
    padding: 2rem;
    text-align: center;
}

.menu-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.menu-item-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.order-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.order-button:hover {
    background-color: #a01830;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 5rem 5%;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background-color: var(--accent-color);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background-color: #a01830;
    transform: translateY(-3px);
}

/* Map Styles */
.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--white);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-overlay span {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-link:hover .map-overlay span {
    transform: translateY(0);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-info p {
    color: #bdc3c7;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 0.5rem 1rem;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }

    .mobile-menu {
        display: block;
        z-index: 1001;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 60px 0 0 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.3s ease-in-out;
        display: flex;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-color);
        text-decoration: none;
        display: block;
    }

    .nav-links a:last-child {
        border-bottom: none;
        margin-top: auto;
        background-color: var(--primary-color);
        color: var(--white) !important;
        padding: 1.5rem;
        text-align: center;
    }

    .order-phone {
        margin: 0;
        border-radius: 0;
        justify-content: center;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .order-phone i {
        font-size: 1.3rem;
    }

    /* Menü açıkken arka planı karartma */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .menu-overlay.open {
        display: block;
        opacity: 1;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding-top: 60px;
        background-attachment: scroll;
    }

    /* Diğer bölümler için padding ayarı */
    .menu-section,
    .about-section,
    .contact-section {
        padding-top: calc(60px + 2rem);
    }

    /* Tüm bölümler için genel mobil padding */
    .menu-section,
    .about-section,
    .contact-section,
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content,
    .menu-grid,
    .about-content,
    .contact-content,
    .footer-content {
        padding: 0;
    }

    /* Grid düzenini mobil için düzeltme */
    .menu-grid,
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image img,
    .map-container {
        margin-top: 1.5rem;
    }

    /* Mobil menü açıkken body scroll'u engelle */
    body.menu-open {
        overflow: hidden;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 360px) {
    .nav-links {
        width: 90%;
    }

    .nav-links a {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .order-phone {
        font-size: 1.1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .menu-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .menu-item-image {
        height: 150px;
    }

    .menu-item-content h3 {
        font-size: 1.1rem;
    }

    .menu-item-content p {
        font-size: 0.8rem;
    }

    .contact-details p {
        font-size: 0.8rem;
    }

    .footer-logo span {
        font-size: 1rem;
    }
}

/* Tablet için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .menu-item-image {
        height: 220px;
    }
} 