/* Tema 4 - Fine Dining: Lüks, zarif, premium */

:root {
    --primary-color: #1e3c72;
    --secondary-color: #2a5298;
    --text-color: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Hero Section */
.theme-hero {
    padding: 180px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 140%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.15) 0%, rgba(42, 82, 152, 0.15) 100%), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.theme-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.15) 0%, rgba(42, 82, 152, 0.15) 100%);
    z-index: 1;
}

.theme-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    border-top: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding: 50px 0;
    will-change: transform;
}

.theme-hero h1 {
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.theme-hero .lead {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.8;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0;
    padding: 8px 30px;
    font-weight: 300;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-light, .btn-outline-light {
    border-radius: 0;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 15px 40px;
}

.btn-outline-light {
    border-width: 2px;
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title-divider {
    width: 150px;
    height: 1px;
    background: var(--primary-color);
    margin: 20px auto;
}

/* Menu Section */
.menu-section {
    background: white;
}

.category-item {
    margin-bottom: 20px;
}

.category-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.category-image img {
    object-fit: cover;
}

.category-item h5 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.category-item p {
    font-size: 0.95rem;
}

/* Products Section */
.products-section {
    background: var(--bg-light);
}

.product-card {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-image {
    object-fit: cover;
    min-height: 150px;
}

.product-card h5 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.product-desc {
    font-size: 0.95rem;
    font-style: italic;
}

.price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
}

.order-btn {
    padding: 8px 20px;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-item {
    font-size: 1.1rem;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.contact-item i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .theme-hero {
        padding: 120px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card .row {
        flex-direction: column;
    }
    
    .product-image {
        height: 200px;
    }
}

