/* Base Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --accent-color: #f1c40f;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --footer-bg: #1d3557;
    --text-color: #333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

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

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.primary-btn:hover {
    background-color: #d32836;
    color: white;
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background-color: #3a6a87;
    color: white;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.nav-links i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
}

.order-btn {
    margin-left: 15px;
}

.order-online-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-online-btn:hover {
    background-color: #d32836;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
}

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

.feature-box h3 {
    margin-bottom: 15px;
}

/* Popular Slices Section */
.popular-slices {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.popular-slices h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.slice-card h3 {
    padding: 20px 20px 10px;
}

.slice-card p {
    padding: 0 20px 10px;
    color: var(--gray-color);
}

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

/* Deals Section */
.deals {
    padding: 80px 5%;
}

.deals h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.deal-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.deal-image {
    flex: 1;
    min-width: 200px;
}

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

.deal-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-content h3 {
    margin-bottom: 10px;
}

.deal-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.deal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.blog-card {
    background-color: white;
    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 20px rgba(0, 0, 0, 0.15);
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author span {
    font-weight: 600;
}

/* App Download Section */
.app-download {
    padding: 80px 5%;
    background-color: var(--light-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-content h2 {
    margin-bottom: 20px;
}

.app-content p {
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.app-btn:hover {
    background-color: black;
    color: white;
}

.app-btn i {
    font-size: 1.5rem;
}

.app-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 5% 20px;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(29, 53, 87, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn.reject {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-more-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-more-info a {
    color: white;
    text-decoration: underline;
}

/* Page Banner */
.page-banner {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 5%;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: 15px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* About Page Styles */
.about-story {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-content h2 {
    margin-bottom: 20px;
}

.mission-values {
    padding: 80px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.mission-values h2 {
    margin-bottom: 40px;
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.our-team {
    padding: 80px 5%;
    text-align: center;
}

.our-team h2 {
    margin-bottom: 40px;
}

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

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

.team-member:hover {
    transform: translateY(-10px);
}

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

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 10px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 20px;
}

.member-socials a {
    color: var(--gray-color);
    transition: var(--transition);
}

.member-socials a:hover {
    color: var(--primary-color);
}

.locations {
    padding: 80px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.locations h2 {
    margin-bottom: 40px;
}

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

.quality-commitment {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.quality-content h2 {
    margin-bottom: 20px;
}

.quality-list {
    margin-bottom: 20px;
}

.quality-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.quality-list li i {
    color: var(--success-color);
    margin-right: 10px;
}

.quality-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.cta-section {
    padding: 80px 5%;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .secondary-btn {
    background-color: white;
    color: var(--primary-color);
}

/* Blog Page Styles */
.blog-container {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-image {
    flex: 1;
    min-width: 300px;
}

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

.blog-content {
    flex: 2;
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

.sidebar-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.categories ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: var(--text-color);
    transition: var(--transition);
}

.categories ul li a:hover {
    color: var(--primary-color);
}

.popular-post {
    display: flex;
    margin-bottom: 20px;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.post-date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

/* Blog Post Styles */
.blog-post {
    padding: 80px 5%;
}

.blog-post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-header h1 {
    margin-bottom: 15px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--gray-color);
}

.featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-post-body {
    line-height: 1.8;
}

.blog-post-body h2 {
    margin: 40px 0 20px;
}

.blog-post-body h3 {
    margin: 30px 0 15px;
}

.blog-post-body ul, .blog-post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-body li {
    margin-bottom: 10px;
}

.blog-image-container {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-caption {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: var(--light-gray);
    color: var(--gray-color);
    font-style: italic;
    font-size: 0.9rem;
}

blockquote {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-color);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
}

.post-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.nav-previous, .nav-next {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
}

.nav-previous:hover, .nav-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.related-posts {
    margin-bottom: 50px;
}

.related-posts h3 {
    margin-bottom: 30px;
}

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

.related-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-post .post-date {
    padding: 0 15px 15px;
    display: block;
}

.comments h3 {
    margin-bottom: 30px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment-avatar {
    margin-right: 20px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.comment-author {
    font-weight: 600;
}

.comment-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.comment-date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.reply-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.leave-comment {
    margin-top: 50px;
}

.leave-comment h3 {
    margin-bottom: 30px;
}

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

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

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

.form-group label {
    margin-bottom: 10px;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.about-author {
    text-align: center;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.author-bio h4 {
    margin-bottom: 10px;
}

.author-bio p {
    margin-bottom: 20px;
}

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

.author-social a {
    color: var(--gray-color);
}

.sidebar-section.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.sidebar-section.cta h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar-section.cta p {
    margin-bottom: 20px;
}

.sidebar-section.cta .btn {
    width: 100%;
    background-color: white;
    color: var(--primary-color);
}

.current-deals .deal-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    font-weight: 600;
}

.social-icons.larger a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.app-download p.app-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.create-your-own {
    text-align: center;
}

/* Menu Page Styles */
.menu-navigation {
    padding: 20px 5%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: var(--header-height);
    z-index: 900;
}

.menu-nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-nav-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.menu-section {
    padding: 80px 5%;
}

.menu-section.hidden {
    display: none;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.menu-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--gray-color);
}

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

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

.menu-item-image {
    width: 150px;
    min-width: 150px;
}

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

.menu-item-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.menu-item-content h3 {
    margin-bottom: 10px;
}

.menu-item-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.menu-item-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.menu-item-pricing span {
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.combo-item-content {
    padding: 30px;
}

.combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.combo-header h3 {
    margin-bottom: 0;
}

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

.combo-includes {
    margin-bottom: 20px;
    padding-left: 20px;
}

.combo-includes li {
    margin-bottom: 10px;
}

.combo-note {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.build-your-own {
    padding: 80px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.build-your-own h2 {
    margin-bottom: 15px;
}

.build-your-own p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.build-your-own-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    text-align: left;
}

.build-your-own-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.build-your-own-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.build-your-own-steps {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 15px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.topping-note {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-color);
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.topping-category h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.build-your-own-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.estimated-price {
    font-size: 1.2rem;
    font-weight: 700;
}

.estimated-price span {
    color: var(--primary-color);
}

.nutritional-info {
    padding: 60px 5%;
    text-align: center;
}

.nutritional-info h2 {
    margin-bottom: 20px;
}

.nutritional-info p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.dietary-options {
    padding: 80px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.dietary-options h2 {
    margin-bottom: 40px;
}

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

.dietary-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.dietary-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dietary-item h3 {
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 5%;
}

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

.contact-method {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-method h3 {
    margin-bottom: 10px;
}

.contact-method p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.contact-detail {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

.contact-form-section {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
}

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

.contact-info-sidebar > div {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.contact-map {
    margin-bottom: 20px;
}

.contact-map img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.map-link:hover {
    color: var(--primary-color);
}

.sidebar-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.hours-list li span {
    font-weight: 600;
}

.location-finder {
    padding: 80px 5%;
    text-align: center;
}

.location-finder h2 {
    margin-bottom: 20px;
}

.location-finder > p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.location-search {
    max-width: 800px;
    margin: 0 auto 40px;
}

.location-form .form-group {
    display: flex;
    flex-direction: row;
}

.location-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
}

.location-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.popular-locations h3 {
    margin-bottom: 20px;
}

.location-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.location-links a {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.location-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.faq-section {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.more-questions {
    text-align: center;
}

.franchise-info {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.franchise-content h2 {
    margin-bottom: 20px;
}

.franchise-content p {
    margin-bottom: 30px;
}

.franchise-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 20px;
}

.thank-you-message p {
    margin-bottom: 30px;
}

/* Sweet and Savory Combinations */
.deals-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.deal-day {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.deal-day h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero {
        padding: 60px 5%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .deal-container {
        grid-template-columns: 1fr;
    }
    
    .app-download {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .about-story, .quality-commitment {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quality-list li {
        justify-content: center;
    }
    
    .franchise-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        min-width: auto;
    }
    
    .blog-container, .blog-post-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .build-your-own-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features, .values-container, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
