/*
Theme Name: Turco Doner Kebab
Theme URI: https://example.com/turco-doner
Author: Senior WP Developer
Author URI: https://example.com
Description: Modern 2025 dark UI, elegant, minimal, and attractive theme for a Doner Kebab restaurant.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turco-doner
Tags: dark-theme, restaurant, kebab, modern, responsive
*/

/* Reset & Base Styles */
:root {
    --bg-color: #09090b; /* zinc-950 */
    --bg-secondary: #18181b; /* zinc-900 */
    --text-main: #f4f4f5; /* zinc-100 */
    --text-muted: #a1a1aa; /* zinc-400 */
    --accent-color: #f97316; /* orange-500 */
    --accent-hover: #ea580c; /* orange-600 */
    --border-color: #27272a; /* zinc-800 */
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo span {
    color: var(--accent-color);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color), rgba(9,9,11,0.8) 50%, transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(to right, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Dishes Grid */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--accent-color);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.dish-card {
    background-color: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dish-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
    transform: translateY(-8px);
}

.dish-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.dish-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
}

.dish-content {
    padding: 24px;
}

.dish-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.dish-card:hover .dish-title {
    color: var(--accent-color);
}

.dish-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--bg-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-block:hover {
    background-color: var(--accent-color);
}

/* Footer */
.site-footer {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .main-navigation { display: none; }
    .hero-buttons { flex-direction: column; }
}
