:root {
    --primary-color: #ff5722;
    --primary-hover: #e64a19;
    --secondary-color: #212121;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --text-dark: #2d3436;
    --text-light: #f8f9fa;
    --accent-color: #ffc107;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition-fast: all 0.3s ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    background-color: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-fast);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: #fff;
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #e0e0e0;
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/burgers.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition-fast);
}

.btn-outline-custom:hover,
.btn-outline-custom.active {
    background-color: var(--primary-color);
    color: #fff;
}

.custom-card {
    background: #fff;
    border-radius: 15px;
    border: none;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition-fast);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.custom-card img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.custom-card .card-body {
    padding: 25px;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.filter-btn {
    margin: 5px;
    border-radius: 20px;
    padding: 8px 20px;
}

footer {
    background-color: var(--secondary-color);
    color: #9e9e9e;
    padding: 60px 0 20px;
    margin-top: 80px;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

footer a {
    color: #9e9e9e;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
}

.social-icons a:hover {
    background: var(--primary-color);
}

.hero-carousel .carousel-item {
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
    bottom: 30%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.gallery-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-fast);
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    height: 100%;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-carousel .carousel-item {
        height: 60vh;
    }
}