/* Overblew Restaurant - Custom Styles */

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c1810;
    --accent-color: #ff6b35;
    --text-light: #f8f9fa;
    --text-dark: #2c1810;
    --bg-light: #fff8f3;
    --bg-pattern: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23d4a574" opacity="0.1"/></svg>');
    --shadow-light: 0 4px 20px rgba(212, 165, 116, 0.1);
    --shadow-dark: 0 8px 30px rgba(44, 24, 16, 0.15);
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #e8c7a0 100%);
    --gradient-dark: linear-gradient(135deg, #2c1810 0%, #4a2f20 100%);
}

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

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

.text-accent {
    color: var(--accent-color) !important;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .btn-warning {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-banner .btn-outline-warning {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Navigation */
.navbar-custom {
    background: rgba(44, 24, 16, 0.95) !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Lobster', cursive;
    font-size: 2.2rem;
    color: var(--primary-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

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

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

.dropdown-menu {
    background: var(--secondary-color);
    border: none;
    box-shadow: var(--shadow-dark);
    border-radius: 15px;
    padding: 10px 0;
}

.dropdown-item {
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}


#calendarDays{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}




.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('images/bg.jpg') center/cover,
        var(--gradient-dark);
    background-blend-mode: overlay;
    opacity: 0.3;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-dark);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Events Ribbon */
.events-ribbon {
    background: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.events-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.3;
}

.ribbon-content {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.ribbon-item {
    margin-right: 100px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ribbon-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.5;
}

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.menu-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.menu-content {
    padding: 30px;
}

.menu-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.menu-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.menu-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.menu-price .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.menu-price .per-person {
    color: #999;
    font-size: 0.9rem;
}

/* Chef Quotes Section */
.chef-quotes {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.chef-quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.2;
}

.quote-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.3);
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quote-card p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.chef-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.chef-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.chef-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.chef-info span {
    color: rgba(248, 249, 250, 0.8);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* Ingredients Map Section */
.ingredients-map {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
}

.ingredients-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.3;
}

.map-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
}

.ingredient-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.ingredient-pin:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--primary-color);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.ingredients-list {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.ingredient-item {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.ingredient-item:hover,
.ingredient-item.active {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--primary-color);
}

.ingredient-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.ingredient-item p {
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.ingredient-item .season {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Culinary Calendar Section */
.culinary-calendar {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.culinary-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.5;
}

.calendar-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.calendar-header {
    background: var(--gradient-primary);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-header h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.calendar-header .btn {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-header .btn:hover {
    background: var(--text-dark);
    color: var(--primary-color);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #f0f0f0;
}

.calendar-day {
    background: white;
    padding: 15px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.calendar-day.header {
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    cursor: default;
}

.calendar-day:not(.header):hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.calendar-day.event {
    background: var(--accent-color);
    color: white;
    font-weight: 600;
}

.calendar-day.event::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.calendar-events {
    padding: 30px;
    background: #f8f9fa;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.event-date {
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-info h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.event-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.event-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-hero,
.contact-hero {
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-story {
    padding: 100px 0;
    background: var(--bg-light);
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    position: absolute;
    left: -80px;
    top: 5px;
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.team-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-dark);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: rgba(248, 249, 250, 0.9);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-check label {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.form-check a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check a:hover {
    color: var(--accent-color);
}

.error-message {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Map Section */
.map-section {
    height: 400px;
}

.google-map {
    width: 100%;
    height: 100%;
}

.google-map iframe {
    filter: grayscale(20%) contrast(1.2);
    transition: all 0.3s ease;
}

.google-map iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0;
    background: var(--bg-light);
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-top: 40px;
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    color: var(--accent-color);
    margin: 25px 0 15px 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.legal-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.company-info p {
    background: var(--bg-light);
    padding: 10px 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 10px;
    border-radius: 0 10px 10px 0;
}

/* Cookie Controls */
.cookie-controls {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid var(--primary-color);
}

.cookie-category {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 165, 116, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    background: var(--primary-color);
    color: var(--text-dark);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .story-timeline {
        padding-left: 0;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .timeline-item::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .ribbon-content {
        animation-duration: 20s;
    }
    
    .calendar-grid {
        font-size: 0.85rem;
    }
    
    .calendar-day {
        padding: 10px 5px;
        min-height: 50px;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
        min-width: auto;
        width: 100px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .ingredients-list,
    .contact-form {
        margin-top: 30px;
    }
    
    .cookie-banner {
        padding: 15px 10px;
    }
    
    .cookie-banner .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-banner .col-md-4 {
        text-align: center !important;
    }
    
    .value-card,
    .team-card,
    .menu-card {
        margin-bottom: 30px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .btn,
    .swiper-pagination {
        display: none !important;
    }
    
    .page {
        display: block !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .hero-section,
    .chef-quotes,
    .ingredients-map {
        background: white;
        color: black;
    }
    
    .section-title,
    .page-title {
        color: black;
    }
}



.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}