/* Dark Theme for Restaurang Wasa */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f0f;
    color: #f2f2f2;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #111 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    border-bottom: 1px solid #333;
}

.navbar-brand {
    font-weight: 700;
    color: #fff !important;
    font-size: 1.5rem;
}

.navbar-logo {
    height: 125px;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

.hero-logo {
    height: 250px;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: #ddd !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-toggler {
    border-color: #666;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(21, 21, 21, 0.1), rgba(15, 15, 15, 1)), url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(20, 20, 20, 0.85);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid #2a2a2a;
}

.hero-content h1 {
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .lead {
    color: #e5e5e5;
    font-size: 1.2rem;
}

/* Typography */
h1, h2, h3, h4 {
    color: #fff;
    font-weight: 600;
}

h2 {
    margin-bottom: 2rem;
}

/* Menu Section */
#meny {
    background-color: #0f0f0f;
}

.menu-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #141414;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.08);
    border-color: #3a3a3a;
}

.menu-item h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.menu-item p {
    color: #cfcfcf;
    margin-bottom: 1rem;
}

.price {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.5rem;
}

.menu-img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid #2a2a2a;
    transition: border-color 0.3s ease;
}

.menu-item:hover .menu-img {
    border-color: #3a3a3a;
}

/* About Section */
#om-oss {
    background-color: #141414 !important;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

#om-oss p {
    color: #d0d0d0;
    font-size: 1.1rem;
}

/* Contact Section */
#kontakt {
    background-color: #0f0f0f;
}

.contact-info {
    background-color: #141414;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: 1px solid #2a2a2a;
}

.contact-info h3, .contact-info h4 {
    color: #fff;
}

.contact-info p, .contact-info address {
    color: #d0d0d0;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e0e0e0;
}

/* Form Styling */
.form-control {
    background-color: #1d1d1d;
    border: 1px solid #333;
    color: #f2f2f2;
    border-radius: 8px;
}

.form-control:focus {
    background-color: #1d1d1d;
    border-color: #555;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12);
}

.form-label {
    color: #fff;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background-color: #fff;
    border-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.12);
}

/* Footer */
.footer {
    background-color: #000;
    color: #d0d0d0;
    padding: 3rem 0;
    border-top: 1px solid #222;
}

.footer h3 {
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #e0e0e0;
}

/* Map iframe styling */
.ratio iframe {
    border-radius: 12px;
    border: 2px solid #2a2a2a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .menu-item {
        margin-bottom: 1.5rem;
    }
}