:root {
--primary-color: #e63946;
--secondary-color: #f1faee;
--accent-color: #a8dadc;
--dark-color: #1d3557;
--light-color: #f8f9fa;
--text-color: #2b2d42;
--border-radius: 8px;
--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}

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

html {
scroll-behavior: smooth;
}

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

.container-fluid {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

ul {
list-style: none;
}

.main-header {
background: var(--dark-color);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--box-shadow);
}

.navigation-bar {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section img {
height: 60px;
width: auto;
}

.nav-menu {
display: flex;
gap: 30px;
align-items: center;
}

.nav-menu a {
color: var(--secondary-color);
font-weight: 500;
padding: 8px 16px;
border-radius: var(--border-radius);
transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
background: var(--primary-color);
color: white;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.mobile-toggle span {
width: 25px;
height: 3px;
background: var(--secondary-color);
border-radius: 2px;
transition: var(--transition);
}

.neon-button {
background: var(--primary-color);
color: white;
padding: 12px 28px;
border-radius: 50px;
font-weight: 600;
border: 2px solid var(--primary-color);
transition: var(--transition);
display: inline-block;
text-align: center;
cursor: pointer;
}

.neon-button:hover {
background: transparent;
color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.neon-button.large {
padding: 16px 40px;
font-size: 18px;
}

.hero-section {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(29, 53, 87, 0.85), rgba(230, 57, 70, 0.7));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: white;
max-width: 800px;
padding: 0 20px;
}

.hero-title {
font-family: 'Playfair Display', serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
font-size: 22px;
margin-bottom: 30px;
font-weight: 300;
}

.page-hero {
position: relative;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin-bottom: 60px;
}

.page-hero .hero-content h1 {
font-family: 'Playfair Display', serif;
font-size: 48px;
margin-bottom: 15px;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header h2 {
font-family: 'Playfair Display', serif;
font-size: 42px;
color: var(--dark-color);
margin-bottom: 15px;
}

.section-header p {
font-size: 18px;
color: #666;
max-width: 600px;
margin: 0 auto;
}

.features-section {
padding: 80px 0;
background: white;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.feature-card {
text-align: center;
padding: 40px 30px;
background: var(--light-color);
border-radius: var(--border-radius);
transition: var(--transition);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
font-size: 48px;
color: var(--primary-color);
margin-bottom: 20px;
}

.feature-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark-color);
}

.feature-card p {
color: #666;
line-height: 1.8;
}

.menu-preview {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.menu-item {
background: white;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--box-shadow);
transition: var(--transition);
}

.menu-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-item img {
width: 100%;
height: 250px;
object-fit: cover;
}

.menu-item h3 {
padding: 20px 20px 10px;
font-size: 24px;
color: var(--dark-color);
}

.menu-item p {
padding: 0 20px;
color: #666;
margin-bottom: 15px;
}

.menu-item .price {
display: block;
padding: 0 20px 20px;
font-size: 24px;
font-weight: 700;
color: var(--primary-color);
}

.testimonials-section {
padding: 80px 0;
background: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
padding: 30px;
background: var(--light-color);
border-radius: var(--border-radius);
border-left: 4px solid var(--primary-color);
}

.stars {
color: #ffc107;
font-size: 18px;
margin-bottom: 15px;
}

.testimonial-card p {
font-style: italic;
color: #666;
margin-bottom: 20px;
line-height: 1.8;
}

.customer-info {
display: flex;
flex-direction: column;
}

.customer-info strong {
color: var(--dark-color);
font-size: 16px;
}

.customer-info span {
color: #999;
font-size: 14px;
}

.cta-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
text-align: center;
color: white;
}

.cta-section h2 {
font-family: 'Playfair Display', serif;
font-size: 42px;
margin-bottom: 20px;
}

.cta-section p {
font-size: 20px;
margin-bottom: 30px;
}

.cta-section .neon-button {
background: white;
color: var(--primary-color);
border-color: white;
}

.cta-section .neon-button:hover {
background: transparent;
color: white;
border-color: white;
}

.story-section {
padding: 80px 0;
background: white;
}

.story-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.story-text h2 {
font-family: 'Playfair Display', serif;
font-size: 36px;
color: var(--dark-color);
margin-bottom: 25px;
}

.story-text p {
margin-bottom: 20px;
color: #666;
line-height: 1.8;
}

.story-image img {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}

.values-section {
padding: 80px 0;
background: var(--light-color);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.value-card {
text-align: center;
padding: 40px 25px;
background: white;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}

.value-icon {
font-size: 48px;
color: var(--primary-color);
margin-bottom: 20px;
}

.value-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark-color);
}

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

.team-section {
padding: 80px 0;
background: white;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.team-card {
background: var(--light-color);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--box-shadow);
transition: var(--transition);
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.team-card h3 {
padding: 20px 20px 5px;
font-size: 22px;
color: var(--dark-color);
}

.team-card p:first-of-type {
padding: 0 20px;
color: var(--primary-color);
font-weight: 600;
margin-bottom: 10px;
}

.team-card p:last-of-type {
padding: 0 20px 20px;
color: #666;
line-height: 1.7;
}

.blog-section {
padding: 80px 0;
background: white;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}

.blog-card {
background: var(--light-color);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--box-shadow);
transition: var(--transition);
}

.blog-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.blog-content {
padding: 25px;
}

.blog-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 14px;
color: #999;
}

.blog-content h2 {
font-size: 22px;
margin-bottom: 15px;
}

.blog-content h2 a {
color: var(--dark-color);
transition: var(--transition);
}

.blog-content h2 a:hover {
color: var(--primary-color);
}

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

.read-more {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
}

.read-more:hover {
gap: 12px;
}

.contact-section {
padding: 80px 0;
background: white;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info-side h2 {
font-family: 'Playfair Display', serif;
font-size: 36px;
color: var(--dark-color);
margin-bottom: 20px;
}

.contact-info-side > p {
color: #666;
margin-bottom: 30px;
line-height: 1.8;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-item {
display: flex;
gap: 20px;
}

.contact-icon {
font-size: 24px;
color: var(--primary-color);
min-width: 30px;
}

.contact-text h4 {
color: var(--dark-color);
margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
color: #666;
line-height: 1.7;
}

.contact-text a:hover {
color: var(--primary-color);
}

.company-info {
margin-top: 30px;
padding-top: 30px;
border-top: 1px solid #ddd;
}

.company-info p {
color: #666;
}

.contact-form-side h3 {
font-size: 28px;
color: var(--dark-color);
margin-bottom: 25px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-weight: 600;
color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: var(--border-radius);
font-family: inherit;
font-size: 15px;
transition: var(--transition);
}

.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(230, 57, 70, 0.1);
}

.contact-form button {
align-self: flex-start;
}

.map-section {
padding: 80px 0;
background: var(--light-color);
}

.map-section h2 {
text-align: center;
font-family: 'Playfair Display', serif;
font-size: 36px;
color: var(--dark-color);
margin-bottom: 40px;
}

.map-container {
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--box-shadow);
}

.map-container iframe {
width: 100%;
display: block;
}

.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 9999;
align-items: center;
justify-content: center;
}

.modal.show {
display: flex;
}

.modal-content {
background: white;
border-radius: var(--border-radius);
max-width: 500px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
padding: 20px 25px;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
}

.modal-header h3 {
font-size: 24px;
color: var(--dark-color);
}

.modal-close {
background: none;
border: none;
font-size: 32px;
cursor: pointer;
color: #999;
line-height: 1;
padding: 0;
width: 30px;
height: 30px;
}

.modal-close:hover {
color: var(--primary-color);
}

.modal-body {
padding: 30px 25px;
text-align: center;
}

.modal-body i {
font-size: 64px;
color: var(--primary-color);
margin-bottom: 20px;
}

.modal-body p {
color: #666;
line-height: 1.8;
margin-bottom: 15px;
}

.modal-footer {
padding: 20px 25px;
border-top: 1px solid #ddd;
text-align: center;
}

.post-content {
background: white;
}

.post-header {
padding: 40px 0 20px;
background: var(--light-color);
}

.post-meta {
display: flex;
gap: 25px;
margin-bottom: 20px;
font-size: 14px;
color: #999;
flex-wrap: wrap;
}

.post-header h1 {
font-family: 'Playfair Display', serif;
font-size: 42px;
color: var(--dark-color);
line-height: 1.3;
}

.post-featured-image {
width: 100%;
height: 500px;
overflow: hidden;
}

.post-featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-body {
padding: 60px 0;
max-width: 800px;
margin: 0 auto;
}

.post-body h2 {
font-family: 'Playfair Display', serif;
font-size: 32px;
color: var(--dark-color);
margin: 40px 0 20px;
}

.post-body p {
color: #666;
line-height: 1.9;
margin-bottom: 20px;
font-size: 17px;
}

.post-cta {
background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
color: white;
padding: 40px;
border-radius: var(--border-radius);
text-align: center;
margin: 50px 0;
}

.post-cta h3 {
font-size: 28px;
margin-bottom: 15px;
}

.post-cta p {
color: white;
margin-bottom: 25px;
}

.post-cta .neon-button {
background: white;
color: var(--primary-color);
border-color: white;
}

.post-cta .neon-button:hover {
background: transparent;
color: white;
border-color: white;
}

.post-navigation {
padding: 40px 0;
border-top: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.back-to-blog {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
}

.back-to-blog:hover {
gap: 3px;
}

.post-nav-links {
display: flex;
gap: 20px;
}

.prev-post,
.next-post {
color: var(--dark-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: var(--transition);
}

.prev-post:hover,
.next-post:hover {
color: var(--primary-color);
}

.main-footer {
background: var(--dark-color);
color: var(--secondary-color);
padding: 60px 0 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-col h4 {
color: white;
font-size: 20px;
margin-bottom: 20px;
}

.footer-col p {
line-height: 1.8;
margin-bottom: 10px;
}

.footer-col ul {
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-col ul li {
display: flex;
align-items: flex-start;
gap: 10px;
}

.footer-col ul li i {
color: var(--primary-color);
margin-top: 4px;
}

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

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

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
z-index: 9998;
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
padding: 25px 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
}

.cookie-text h4 {
color: var(--dark-color);
margin-bottom: 10px;
}

.cookie-text p {
color: #666;
line-height: 1.6;
}

.cookie-text a {
color: var(--primary-color);
font-weight: 600;
}

.cookie-buttons {
display: flex;
gap: 15px;
flex-shrink: 0;
}

.cookie-btn {
padding: 10px 20px;
border-radius: var(--border-radius);
font-weight: 600;
cursor: pointer;
transition: var(--transition);
border: 2px solid;
}

.cookie-btn.accept {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}

.cookie-btn.accept:hover {
background: #d62839;
border-color: #d62839;
}

.cookie-btn.customize {
background: transparent;
color: var(--dark-color);
border-color: var(--dark-color);
}

.cookie-btn.customize:hover {
background: var(--dark-color);
color: white;
}

.cookie-btn.decline {
background: transparent;
color: #999;
border-color: #999;
}

.cookie-btn.decline:hover {
background: #999;
color: white;
}

@media (max-width: 968px) {
.navigation-bar {
position: relative;
}

.mobile-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--dark-color);
flex-direction: column;
padding: 20px;
gap: 10px;
display: none;
box-shadow: var(--box-shadow);
}

.nav-menu.active {
display: flex;
}

.hero-title {
font-size: 38px;
}

.hero-subtitle {
font-size: 18px;
}

.page-hero .hero-content h1 {
font-size: 36px;
}

.section-header h2 {
font-size: 32px;
}

.story-content {
grid-template-columns: 1fr;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-buttons {
flex-wrap: wrap;
justify-content: center;
}

.blog-grid {
grid-template-columns: 1fr;
}

.post-header h1 {
font-size: 32px;
}

.post-body h2 {
font-size: 26px;
}

.post-navigation {
flex-direction: column;
align-items: flex-start;
}

.post-nav-links {
flex-direction: column;
width: 100%;
}
}

@media (max-width: 600px) {
.hero-section,
.page-hero {
height: 400px;
}

.hero-title {
font-size: 32px;
}

.hero-subtitle {
font-size: 16px;
}

.features-grid,
.menu-grid,
.values-grid,
.team-grid {
grid-template-columns: 1fr;
}

.neon-button.large {
padding: 14px 32px;
font-size: 16px;
}

.section-header h2 {
font-size: 28px;
}

.footer-grid {
grid-template-columns: 1fr;
}
}