/* Urban Contemporary Theme */
:root {
    --color-primary: #2C3E50;
    --color-secondary: #E74C3C;
    --color-accent: #3498DB;
    --color-text: #2C3E50;
    --color-background: #FFFFFF;
    --color-light-bg: #ECF0F1;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Typography */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

/* Navigation */
.navbar {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: white !important;
    letter-spacing: -0.02em;
}

/* Navigation styles are now handled by individual theme navigation templates */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)), 
                url('/images/urban-bg.jpg') center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(44, 62, 80, 0.25);
}

.card-header {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-body {
    padding: 2.5rem;
    background: white;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), #C0392B);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-outline-primary {
    border: 3px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 8px;
    padding: 14px 30px;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-outline-primary:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Menu Section */
.menu-section {
    background: var(--color-light-bg);
    padding: 6rem 0;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(44,62,80,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.menu-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.2);
    border-color: var(--color-secondary);
}

.menu-item h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.menu-price {
    color: var(--color-secondary);
    font-weight: 900;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    border: 2px solid var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    position: relative;
    font-weight: 900;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
}

/* Contact Section */
.contact-section {
    background: var(--color-light-bg);
    padding: 6rem 0;
    position: relative;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
    border: 1px solid rgba(44, 62, 80, 0.1);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.contact-info h5 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--color-secondary);
}

.footer h5 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 2rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding: 2.5rem;
    }
}

/* Special Elements */
.opening-hours {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
    border: 1px solid rgba(44, 62, 80, 0.1);
    position: relative;
}

.opening-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.opening-hours h4 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.3rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(44, 62, 80, 0.1);
    font-weight: 600;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hours-row .time {
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
    transition: all 0.3s ease;
    background: white;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(44, 62, 80, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Industrial Elements */
.industrial-border {
    border: 3px solid var(--color-primary);
}

.industrial-bg {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
}

/* Bold Colors */
.bold-accent {
    color: var(--color-secondary);
}

.bold-border {
    border: 3px solid var(--color-secondary);
}

/* Dynamic Layout */
.dynamic-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Urban Animations */
@keyframes slideInUrban {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.urban-slide-in {
    animation: slideInUrban 0.6s ease-out;
}

/* Loading Animation */
.urban-loading {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInUrban 0.8s ease-out forwards;
} 