/* 
SALVATORE PIZZA WEBSITE STYLES
Table of Contents:
1. Global Styles
2. Typography
3. Progress Bar
4. Header & Navigation
5. Buttons
6. Hero Section
7. Features Section
8. Menu Items
9. Testimonials
10. Locations
11. Blog
12. Contact Form
13. Footer
14. Cookie Banner
15. Modal
16. Utility Classes
17. Media Queries
*/

/* ==================== 1. Global Styles ==================== */
:root {
    --primary-color: #d92626;
    --primary-color-dark: #b81e1e;
    --primary-color-light: #ff5a5a;
    --secondary-color: #2a8e4f;
    --secondary-color-dark: #217242;
    --accent-color: #f8c12c;
    --text-color: #333333;
    --text-color-light: #666666;
    --light-color: #ffffff;
    --light-bg: #f9f9f9;
    --dark-bg: #222222;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-cursive: 'Italianno', cursive;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

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

ul {
    list-style: none;
}

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

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

/* ==================== 2. Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 15px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.cursive {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    font-weight: 400;
}

/* ==================== 3. Progress Bar ==================== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    width: 0;
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* ==================== 4. Header & Navigation ==================== */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

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

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

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* ==================== 5. Buttons ==================== */
.btn, 
button.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--primary-color-dark);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn.tertiary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn.tertiary:hover {
    background-color: var(--light-bg);
    border-color: var(--text-color);
}

.btn.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-3d {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 0 var(--primary-color-dark), 0 8px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.btn-3d:hover {
    background-color: var(--primary-color-light);
    color: var(--light-color);
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--primary-color-dark), 0 5px 8px rgba(0, 0, 0, 0.2);
}

.btn-3d:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--primary-color-dark), 0 0 0 rgba(0, 0, 0, 0.2);
}

.btn-3d.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ==================== 6. Hero Section ==================== */
.hero {
    background-color: var(--light-bg);
    padding: 100px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

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

/* ==================== 7. Features Section ==================== */
.features {
    background-color: var(--light-color);
    text-align: center;
}

.feature-box {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(217, 38, 38, 0.1);
    border-radius: 50%;
}

.icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

/* ==================== 8. Menu Items ==================== */
.popular-items {
    background-color: var(--light-bg);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

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

.menu-item h3 {
    margin: 15px 20px 10px;
    font-size: 1.5rem;
}

.menu-item p {
    margin: 0 20px 15px;
    color: var(--text-color-light);
}

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

.menu-item .btn {
    margin: 0 20px 20px;
}

.menu-section {
    padding: 60px 0;
}

.menu-section:not(:first-of-type) {
    border-top: 1px solid var(--border-color);
}

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

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

.menu-item-card {
    display: flex;
    flex-direction: column;
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

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

.menu-item-info {
    padding: 20px;
}

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

.item-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
}

.description {
    color: var(--text-color-light);
    margin-bottom: 15px;
}

.dietary-info {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.vegetarian, .spicy, .chef-special {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vegetarian {
    background-color: rgba(42, 142, 79, 0.1);
    color: var(--secondary-color);
}

.spicy {
    background-color: rgba(217, 38, 38, 0.1);
    color: var(--primary-color);
}

.chef-special {
    background-color: rgba(248, 193, 44, 0.1);
    color: #c97d10;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.menu-tabs li a {
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.menu-tabs li a.active,
.menu-tabs li a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

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

/* ==================== 9. Testimonials ==================== */
.testimonials {
    background-color: var(--light-color);
    text-align: center;
}

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

.testimonial {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    max-width: 350px;
    text-align: left;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.customer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.customer span {
    font-weight: 600;
}

/* ==================== 10. Locations ==================== */
.locations {
    background-color: var(--light-bg);
    text-align: center;
}

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

.location-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

.location-info {
    padding: 20px;
    text-align: left;
}

.location-info h3 {
    margin-bottom: 15px;
}

.location-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-info svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

/* ==================== 11. Blog ==================== */
.blog-preview {
    background-color: var(--light-color);
}

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

.blog-post {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

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

.blog-post h3 {
    margin: 15px 20px 10px;
    font-size: 1.3rem;
}

.blog-post p {
    margin: 0 20px 15px;
    color: var(--text-color-light);
}

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

.read-more:hover {
    color: var(--primary-color-dark);
}

.blog-content {
    padding: 60px 0;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .blog-card {
        flex-direction: row;
    }
    
    .blog-image {
        flex: 0 0 40%;
    }
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

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

.blog-info {
    padding: 30px;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.date, .category {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.blog-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-info h2:after {
    display: none;
}

.blog-info p {
    margin-bottom: 20px;
}

.blog-post {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-content h2 {
    margin-top: 40px;
}

.post-image-center {
    margin: 30px 0;
    text-align: center;
}

.post-image-center img {
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.post-image-center em {
    display: block;
    margin-top: 10px;
    color: var(--text-color-light);
    font-style: italic;
}

.post-content ul, .post-content ol {
    margin: 20px 0 20px 20px;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 10px;
}

.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.share-buttons {
    margin-bottom: 30px;
}

.share-buttons h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    color: var(--text-color);
}

.share-buttons svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.tags {
    margin-bottom: 30px;
}

.tags h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tags a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-bg);
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

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

.author-bio {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

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

.bio-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.bio-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.related-posts h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.related-post {
    display: block;
    color: var(--text-color);
}

.related-post:hover {
    color: var(--primary-color);
}

.related-post img {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.nav-previous, .nav-next {
    max-width: 45%;
}

.nav-label {
    display: flex;
    align-items: center;
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.nav-previous .nav-label {
    justify-content: flex-start;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-label svg {
    width: 18px;
    height: 18px;
}

.nav-previous .nav-label svg {
    margin-right: 5px;
}

.nav-next .nav-label svg {
    margin-left: 5px;
}

.nav-title {
    font-weight: 600;
}

.newsletter {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--light-color);
}

.newsletter h2:after {
    background: var(--light-color);
    margin: 15px auto 0;
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #e5b115;
    transform: translateY(-2px);
}

/* ==================== 12. Contact Form ==================== */
.contact-info {
    background-color: var(--light-bg);
}

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

.info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(217, 38, 38, 0.1);
    border-radius: 50%;
}

.info-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 15px;
    color: var(--text-color-light);
}

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

.hours-table {
    width: 100%;
    margin: 0 auto;
}

.hours-table td {
    padding: 5px 0;
}

.hours-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.hours-table td:last-child {
    text-align: right;
}

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

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.form-container, .map-container {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--light-bg);
    font-family: var(--font-primary);
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.map {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

.location {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.location:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location h4 {
    margin-bottom: 5px;
}

.location p {
    margin-bottom: 5px;
    color: var(--text-color-light);
}

.faq-section {
    background-color: var(--light-bg);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.faq-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.thank-you-message svg {
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* ==================== 13. Footer ==================== */
footer {
    background-color: var(--dark-bg);
    color: var(--light-color);
    padding: 80px 0 30px;
}

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

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

.footer-column h4 {
    color: var(--light-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-column p {
    margin-bottom: 15px;
    color: #aaa;
}

.footer-column p svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

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

.footer-column ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--light-color);
}

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

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

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

.social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--light-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--light-color);
}

/* ==================== 14. Cookie Banner ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-color);
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-content a {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* ==================== 15. Modal ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-color-light);
}

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

/* ==================== 16. Utility Classes ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

.px-1 { padding-left: 10px; padding-right: 10px; }
.px-2 { padding-left: 20px; padding-right: 20px; }
.px-3 { padding-left: 30px; padding-right: 30px; }
.px-4 { padding-left: 40px; padding-right: 40px; }
.px-5 { padding-left: 50px; padding-right: 50px; }

/* ==================== 17. Media Queries ==================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.7rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn, .btn-3d {
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.our-story {
    background-color: var(--light-bg);
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

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

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.our-values {
    text-align: center;
}

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

.value-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(217, 38, 38, 0.1);
    border-radius: 50%;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

.meet-team {
    background-color: var(--light-bg);
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color-light);
}

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

.team-member {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 20px;
}

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

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

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--text-color);
}

.social-links a:hover svg {
    color: var(--light-color);
}

.our-approach {
    background-color: var(--light-color);
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.approach-gallery img {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.approach-gallery img:first-child {
    grid-column: span 2;
}

.sustainability {
    background-color: var(--light-bg);
}

.sustainability-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.sustainability-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.sustainability-text {
    flex: 1;
    min-width: 300px;
}

.eco-initiatives {
    margin: 30px 0;
}

.eco-initiatives li {
    display: flex;
    margin-bottom: 20px;
}

.eco-initiatives li svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.eco-initiatives li h4 {
    margin-bottom: 5px;
}

.awards {
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.award-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(248, 193, 44, 0.1);
    border-radius: 50%;
}

.award-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-color);
}

.award-card h3 {
    margin-bottom: 10px;
}

.award-card p {
    color: var(--text-color-light);
}

.join-team {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/52.jpg");
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 100px 0;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    color: var(--light-color);
}

.join-content h2:after {
    background: var(--light-color);
    margin: 15px auto 0;
}

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

/* Order CTA Section */
.order-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/58.jpg");
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--light-color);
    font-size: 2.5rem;
}

.cta-content h2:after {
    background: var(--light-color);
    margin: 15px auto 0;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

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

.cta-section h2 {
    color: var(--light-color);
}

.cta-section h2:after {
    background: var(--light-color);
    margin: 15px auto 0;
}

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

.page-header {
    background-color: var(--light-bg);
    text-align: center;
    padding: 60px 0;
}

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

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color-light);
}
