/* ===== Site 2: Fast, Bold, Delicious - Orange/Yellow Dynamic Style ===== */

:root {
    --primary-orange: #FF6B00;
    --primary-yellow: #FFD93D;
    --gradient-main: linear-gradient(135deg, #FF6B00, #FFD93D);
    --gradient-hover: linear-gradient(135deg, #FFD93D, #FF6B00);
    --bg-dark: #1A1A1A;
    --bg-darker: #0D0D0D;
    --text-light: #FFFFFF;
    --text-muted: #AAAAAA;
    --accent-red: #FF4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    line-height: 1.1;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

/* Yanıp sönen logo animasyonu */
.nav-brand.glow-logo {
    font-size: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { 
        filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
        text-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    }
    to { 
        filter: drop-shadow(0 0 25px rgba(255, 217, 61, 1));
        text-shadow: 0 0 40px rgba(255, 217, 61, 1);
    }
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-yellow);
}

.nav-links a i {
    font-size: 1.2rem;
    color: var(--primary-yellow);
}

.nav-social {
    display: flex;
    gap: 20px;
}

.nav-social a {
    color: var(--primary-orange);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    color: var(--primary-yellow);
    transform: scale(1.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.light-streak {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    animation: streak 3s infinite;
}

.streak-1 {
    top: 20%;
    left: -100%;
    width: 60%;
    animation-delay: 0s;
}

.streak-2 {
    bottom: 30%;
    right: -100%;
    width: 50%;
    animation-delay: 1s;
    animation-direction: reverse;
}

.streak-3 {
    top: 60%;
    left: -100%;
    width: 40%;
    animation-delay: 2s;
}

@keyframes streak {
    0% { transform: translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(300%); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(255, 107, 0, 0.5);
    letter-spacing: 10px;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(255, 217, 61, 0.8)); }
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    letter-spacing: 15px;
    margin-bottom: 60px;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.image-frame {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.image-frame img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border: 3px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.image-frame img:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.brush-stroke {
    position: absolute;
    width: 80px;
    height: 120px;
    background: var(--primary-orange);
    clip-path: polygon(0 0, 100% 20%, 80% 100%, 10% 80%);
}

.brush-stroke.top-left {
    top: -20px;
    left: -30px;
    transform: rotate(-15deg);
}

.brush-stroke.bottom-right {
    bottom: -20px;
    right: -30px;
    transform: rotate(165deg);
}

.brush-stroke.top-right {
    top: -20px;
    right: -30px;
    transform: rotate(15deg);
}

.brush-stroke.bottom-left {
    bottom: -20px;
    left: -30px;
    transform: rotate(-165deg);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    padding: 18px 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-dark);
    border: 3px solid var(--primary-orange);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 3px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    color: rgba(255, 107, 0, 0.3);
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 40%; right: 15%; animation-delay: 1s; }
.icon-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.icon-4 { bottom: 20%; right: 10%; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}

.header-line {
    width: 100px;
    height: 4px;
    background: var(--gradient-main);
    margin: 20px auto 0;
}

.header-line.left {
    margin: 20px 0 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--bg-darker);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.price {
    background: var(--gradient-main);
    color: var(--bg-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-1 {
    width: 80%;
    border-radius: 20px;
    border: 4px solid var(--primary-orange);
}

.about-img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border-radius: 20px;
    border: 4px solid var(--primary-yellow);
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--primary-orange);
}

.feature i {
    color: var(--primary-yellow);
    font-size: 1.3rem;
}

.feature span {
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

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

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-darker);
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-yellow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-orange);
    width: 50px;
}

.info-card h4 {
    color: var(--primary-yellow);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 25px;
    background: var(--bg-darker);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .btn {
    align-self: flex-start;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary-orange);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 50%;
    color: var(--primary-orange);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        letter-spacing: 8px;
    }
    
    .image-frame img {
        width: 140px;
        height: 110px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links,
    .nav-social {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        padding: 30px;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 5px;
    }
    
    .hero-images {
        flex-direction: column;
    }
    
    .image-frame {
        padding: 10px;
    }
    
    .image-frame img {
        width: 120px;
        height: 90px;
    }
    
    .brush-stroke {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Hakkımızda Yeni Stil ===== */
.about-text-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-full .lead {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text-full p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-text-full .about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-text-full .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-text-full .feature i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.about-text-full .feature span {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* ===== Şubeler Bölümü ===== */
.branches-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branch-card {
    background: var(--bg-darker);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

.branch-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.branch-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.branch-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.branch-info p {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.branch-info i {
    color: var(--primary-orange);
    width: 20px;
}

@media (max-width: 992px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text-full .about-features {
        flex-direction: column;
        gap: 25px;
    }
}
