/* 
   Salvatore's Pizza Website Styles
   Modern, clean design with Italian-inspired color palette
*/

/* Base Styles & Typography */
:root {
    --primary-color: #d73427; /* Classic Italian red */
    --secondary-color: #1a6837; /* Italian flag green */
    --accent-color: #f8b400; /* Warm gold */
    --dark-color: #1c2331; /* Nearly black */
    --light-color: #f5f5f5;
    --gray-color: #7d8792;
    --gray-light: #e8e8e8;
    --body-font: 'Lato', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --border-radius: 4px;
    --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #b02a1f;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

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

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

.tertiary-btn:hover {
    background-color: var(--gray-light);
    color: var(--dark-color);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    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);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/27.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: white;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: rgba(215, 52, 39, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

/* Popular Items Section */
.popular-items {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.popular-items h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.item-card:hover {
    transform: translateY(-10px);
}

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

.item-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
}

.item-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--gray-color);
}

.item-card .btn {
    display: block;
    margin: 0 1.5rem 1.5rem;
}

/* Did You Know Section */
.did-you-know {
    padding: 5rem 0;
    background-color: white;
}

.facts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateX(10px);
}

.fact-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.fact-content h3 {
    margin-bottom: 0.5rem;
}

/* Event Countdown Section */
.event-countdown {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/28.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.event-countdown h2,
.event-countdown p {
    color: white;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.testimonial {
    flex: 0 0 calc(50% - 1rem);
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    position: relative;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-color);
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 1rem;
}

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

.footer-logo img {
    height: 70px;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #c8c8c8;
}

.footer-contact p svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact p a {
    color: #c8c8c8;
}

.footer-contact p a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

.social-icons a svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #c8c8c8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-legal-links a:hover {
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 35, 49, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-more-info {
    font-size: 0.9rem;
    margin: 0;
}

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

.cookie-more-info a:hover {
    color: var(--gray-light);
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/29.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Menu Page Styles */
.menu-categories {
    padding: 3rem 0 1rem;
    background-color: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover {
    color: var(--primary-color);
}

.category-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.menu-items {
    padding: 2rem 0 5rem;
    background-color: white;
}

.category-section {
    display: none;
    margin-bottom: 3rem;
}

.category-section.active {
    display: block;
}

.category-description {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

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

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

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.menu-item-content {
    padding: 1rem;
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

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

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

.menu-item p {
    color: var(--gray-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vegetarian {
    background-color: rgba(26, 104, 55, 0.1);
    color: var(--secondary-color);
}

.bestseller {
    background-color: rgba(248, 180, 0, 0.1);
    color: var(--accent-color);
}

.premium {
    background-color: rgba(215, 52, 39, 0.1);
    color: var(--primary-color);
}

.order-info {
    padding: 4rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/30.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.order-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.order-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.order-cta p {
    margin-bottom: 2rem;
}

.order-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.order-cta .btn svg {
    width: 20px;
    height: 20px;
}

/* Blog Page Styles */
.blog-content {
    padding: 5rem 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.blog-card:hover {
    transform: translateY(-10px);
}

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

.blog-card-content {
    padding: 2rem;
}

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

.blog-card h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

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

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

.blog-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

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

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

.newsletter {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.newsletter-form {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Blog Post Styles */
.blog-post {
    padding: 5rem 0;
    background-color: white;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.blog-post h1 {
    margin-bottom: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

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

.author-title {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-post-image {
    margin-bottom: 2rem;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

.lead {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    margin-top: 2.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 2rem;
}

.recipe-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.recipe-card h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.ingredients h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tip-box {
    background-color: rgba(248, 180, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tip-box h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.quote-box {
    font-style: italic;
    padding: 2rem;
    margin: 2rem 0;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    position: relative;
}

.quote-box:before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 10px;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.quote-box p {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
}

.quote-box cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
}

.share-post {
    margin-top: 3rem;
    border-top: 1px solid var(--gray-light);
    padding-top: 2rem;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-share-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.social-share-buttons a.facebook {
    background-color: #3b5998;
    color: white;
}

.social-share-buttons a.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-share-buttons a.email {
    background-color: #d44638;
    color: white;
}

.social-share-buttons a:hover {
    opacity: 0.9;
}

.social-share-buttons a svg {
    width: 20px;
    height: 20px;
}

.blog-post-navigation {
    margin: 4rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 2rem 0;
}

.post-nav-wrapper {
    display: flex;
    justify-content: space-between;
}

.post-nav-prev,
.post-nav-next {
    max-width: 48%;
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-nav-prev a,
.post-nav-next a {
    font-weight: 600;
    color: var(--dark-color);
}

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

.related-posts {
    margin-bottom: 4rem;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.blog-card.mini {
    display: flex;
    flex-direction: column;
}

.blog-card.mini .blog-card-image img {
    height: 200px;
}

.blog-card.mini .blog-card-content {
    padding: 1.5rem;
}

.blog-card.mini h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* About Page Styles */
.about-story {
    padding: 5rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.our-values {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: rgba(215, 52, 39, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.value-icon svg {
    width: 35px;
    height: 35px;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.meet-team {
    padding: 5rem 0;
    background-color: white;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--light-color);
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

.cta-section {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/31.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 0;
    background-color: white;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: rgba(215, 52, 39, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.contact-icon svg {
    width: 35px;
    height: 35px;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card .hours,
.contact-card .note {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form,
.map-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.contact-form h2,
.map-container h2 {
    margin-bottom: 1rem;
}

.contact-form p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--body-font);
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

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

.map {
    margin-bottom: 2rem;
}

.map img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.directions h3 {
    margin-bottom: 1rem;
}

.directions p {
    margin-bottom: 0.75rem;
}

.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.popup-header h3 {
    margin: 0;
}

.close-popup {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.popup-body {
    padding: 2rem;
    text-align: center;
}

.check-icon {
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.popup-body p {
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .form-map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 1rem;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1001;
        padding: 2rem;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 1rem;
    }
    
    .footer-links h3:after,
    .footer-contact h3:after,
    .footer-social h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item img {
        width: 100%;
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .post-nav-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-nav-prev,
    .post-nav-next {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .social-share-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
