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

body {
    font-family: 'Open Sans', sans-serif; /* Primary font - clean and highly readable */
    font-weight: 400;
    line-height: 1.6;
    color: #CD7F32; /* Bronze text */
    background-color: #121212; /* Dark background */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bronze {
    color: #CD7F32; /* Bronze */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

/* About Section Styles */
#o-nas {
    position: relative;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
    background-color: #121212;
}

#o-nas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/20250506_132847.jpeg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

#o-nas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(205, 127, 50, 0.05) 0px, rgba(205, 127, 50, 0.05) 2px, transparent 2px, transparent 10px);
    z-index: 2;
}

#o-nas .container {
    position: relative;
    z-index: 3;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-divider .shape-fill {
    fill: #121212;
}

section:first-of-type {
    padding-top: 200px; /* Account for the taller navbar */
    transition: padding 0.3s ease;
}

@media (min-width: 992px) {
    .navbar.scrolled ~ section:first-of-type {
        padding-top: 120px; /* Reduced padding when nav is compact */
    }
}

h2 {
    font-family: 'Lobster', cursive;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #CD7F32; /* Bronze */
    font-weight: normal; /* Lobster looks better without extra weight */
}

h3 {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    color: #CD7F32; /* Bronze */
}

/* Header Styles */
header {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #CD7F32; /* Bronze */
}

nav {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8C7853; /* Darker bronze for hover */
}

/* Bronze Color Theme */
:root {
    --bronze: #CD7F32;
    --bronze-dark: #8C7853;
    --bronze-light: #E6C99F;
}

/* Bootstrap Color Customizations */
.text-bronze {
    color: var(--bronze) !important;
}

.bg-bronze {
    background-color: var(--bronze) !important;
}

.border-bronze {
    border-color: var(--bronze) !important;
}

/* Button Customizations */
.btn-bronze {
    background-color: var(--bronze);
    color: #fff;
    border-color: var(--bronze);
}

.btn-bronze:hover {
    background-color: var(--bronze-dark);
    border-color: var(--bronze-dark);
    color: #fff;
}

.btn-outline-bronze {
    color: var(--bronze);
    border-color: var(--bronze);
    background-color: transparent;
}

.btn-outline-bronze:hover {
    background-color: var(--bronze);
    color: #fff;
}

/* Bootstrap Navbar Customization */
.navbar {
    transition: all 0.3s ease;
    padding: 0;
}

.navbar-brand {
    margin: 0;
    opacity: 1;
    max-height: 112px; /* 80px logo + 2rem padding */
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

/* Hide logo and compact nav on scroll */
@media (min-width: 992px) {
    .navbar.scrolled {
        padding: 0;
    }

    .navbar.scrolled .navbar-brand {
        opacity: 0;
        max-height: 0;
        padding: 0;
    }

    .navbar.scrolled .container:first-child {
        padding: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 60px;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
    }
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Lobster', cursive;
    color: #CD7F32;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--bronze);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(205, 127, 50, 0.25);
}

/* Custom hamburger icon color */
.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%28205, 127, 50, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Gallery Animation Styles */
.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    animation: scroll 60s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 320px;
    height: 320px;
    margin: 0 15px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background-color: #000;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 280px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 220px;
        height: 220px;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 0 0 10px 10px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 10px 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/6267/menu-restaurant-vintage-table.jpg?auto=compress&cs=tinysrgb&w=1600') no-repeat center center/cover;
    min-height: 100vh;
    padding-top: 80px; /* Account for fixed navbar */
    color: #fff;
}

.hero-content {
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(205, 127, 50, 0.2);
}

.hero h1.display-4 {
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.custom-btn {
    display: inline-block;
    background: #CD7F32; /* Bronze */
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
}

.custom-btn:hover {
    background: #8C7853; /* Darker bronze */
    color: #fff !important;
}

/* Menu Section */
.menu-section {
    position: relative;
    background-color: #1A1A1A; /* Slightly lighter black */
    padding: 80px 0 120px;
    overflow: hidden;
}

/* Background image */
.menu-section .background-image {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/262978/pexels-photo-262978.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

/* Menu Cards Styling */
#daily-menu-container .card {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu iframe container styling */
.menu-iframe-container {
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.menu-iframe-container iframe {
    background-color: transparent !important;
    color: #fff !important;
}

#daily-menu-container .card-header {
    border-bottom: 1px solid rgba(205, 127, 50, 0.2);
}

#daily-menu-container .card-footer {
    border-top: 1px solid rgba(205, 127, 50, 0.2);
}

#daily-menu-container .list-group-item {
    padding: 12px 20px;
}

#daily-menu-container .list-group-item:last-child {
    border-bottom: none !important;
}

/* Price display */
#daily-menu-container .text-bronze {
    white-space: nowrap;
}

/* Menu item spacing */
#daily-menu-container .list-group-item .d-flex {
    gap: 10px;
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    z-index: 4;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotate(180deg);
}

.wave-divider .shape-fill {
    fill: #212529;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/262978/pexels-photo-262978.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.menu-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(205, 127, 50, 0.05) 0px, rgba(205, 127, 50, 0.05) 2px, transparent 2px, transparent 10px);
    z-index: 2;
}

.menu-section .container {
    position: relative;
    z-index: 3;
}

/* Menu Layout */
.menu-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.menu-column {
    background-color: #222222;
    border-radius: 8px;
    padding: 25px;
}

.menu-column-narrow {
    background-color: #222222;
    border-left: 4px solid #CD7F32; /* Bronze */
}

.menu-column-narrow h3 {
    font-family: 'Lobster', cursive;
    color: #CD7F32; /* Bronze */
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8C7853; /* Darker bronze */
}

.menu-column-narrow h4 {
    font-family: 'Lobster', cursive;
    color: #CD7F32; /* Bronze */
    font-size: 1.4rem;
    margin: 20px 0 10px 0;
    padding-left: 10px;
    border-left: 3px solid #8C7853; /* Darker bronze */
}

h6 {
    font-family: 'Lobster', cursive;
}

.menu-column-narrow p {
    color: #CD7F32; /* Bronze */
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 5px;
    font-weight: 300; /* Lighter weight for better readability on dark background */
}

.menu-column-wide {
    flex: 2;
    min-width: 300px;
}

.menu-column-narrow {
    flex: 1;
    min-width: 250px;
}

.menu-column-full {
    flex: 1;
    width: 100%;
}



@media (max-width: 768px) {
    .menu-layout {
        flex-direction: column;
    }
    
    .menu-column-wide,
    .menu-column-narrow {
        width: 100%;
    }
}

.menu-item {
    background-color: #222222;
    padding: 25px;
    border-radius: 8px;
}

.menu-item h3 {
    color: #CD7F32; /* Bronze */
    margin-bottom: 20px;
    border-bottom: 2px solid #8C7853; /* Darker bronze */
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.info-text {
    color: #7a6862;
    font-size: 1rem;
    line-height: 1.6;
}

.info-text p {
    margin-bottom: 15px;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.info-text li {
    margin-bottom: 8px;
}

.info-text strong {
    color: #4E342E;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    background-color: #1A1A1A;
    padding-top: 100px;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 2px solid #222222;
    box-shadow: 0 4px 8px rgba(205, 127, 50, 0.2);
}

.gallery-item img:hover {
    transform: scale(1.05);
    border-color: #CD7F32;
}

/* About Section */
.about {
    background-color: #000000;
    text-align: center;
}

.about p {
    color: #CD7F32;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-map-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}

.contact-info-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-column {
    flex: 2;
    min-width: 500px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333333;
}

.contact-info h3 {
    color: #CD7F32;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #8C7853;
    padding-bottom: 5px;
    display: inline-block;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #222222;
    transition: all 0.3s ease;
    width: 100px;
}

.social-icon:hover {
    background-color: #333333;
    transform: translateY(-5px);
}

.social-icon i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #CD7F32;
}

.social-icon span {
    font-size: 0.9rem;
    color: #E0E0E0;
}

.contact-phone {
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #000000;
    color: #CD7F32;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #CD7F32;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #BCAAA4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    nav {
        display: none; /* For mobile menu toggle implementation */
    }
    
    .contact-info, .menu-items, .gallery-items {
        grid-template-columns: 1fr;
    }
}

/* Social Media Buttons */
.btn.text-bronze {
    background-color: transparent !important;
    border: none !important;
    color: #CD7F32 !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.btn.text-bronze:hover {
    background-color: #CD7F32 !important;
    color: #121212 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(205, 127, 50, 0.3);
}

.btn.text-bronze:focus {
    background-color: #CD7F32 !important;
    color: #121212 !important;
    box-shadow: 0 0 0 0.2rem rgba(205, 127, 50, 0.5);
}
