:root {
    --primary-color: #DB3733;
    --text-color: #333;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --background-color: #f8f9fa;
    --footer-color: #f5f5f5;
    --section-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-5px);
    --transition-speed: 0.3s ease;
    --heading-animation-distance: 20px;
}

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

html {

    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #FFEDDF;

a.gallerylink:hover {
    cursor: default !important;
}

/* Pre-header */
.pre-header {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    height: 20px;
    line-height: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    box-shadow:
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset;
}

.pre-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    padding-right: 2rem;
}

.pre-header .social-icon {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-speed);
    font-size: 0.9rem;
    padding-left: 2rem;
}

.pre-header .social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.pre-header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-speed);
    font-size: 0.8rem;
}

.pre-header-phone:hover {
    color: var(--primary-color);
}

/* Heading Animations */
h2 {
    opacity: 0;
    transform: translateY(var(--heading-animation-distance));
    transition: opacity 0.6s ease, transform 0.6s ease;
}

h2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Department Page Styles */
.department-hero {
    position: relative;
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.department-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.pexels.com/photos/1797428/pexels-photo-1797428.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.department-hero h1,
.department-hero p {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.department-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}



.department-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.back-link {
    padding: 3rem 2rem;
    background-color: white;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-speed);
}

.back-link a:hover {
    transform: translateX(-5px);
}

.back-link {
    padding: 3rem 2rem;
    background-color: white;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-speed);
}

.back-link a:hover {
    transform: translateX(-5px);
}

.department-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.category {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: center;
}

.category:nth-child(even) {
    flex-direction: row-reverse;
}

.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: var(--section-shadow);
}

.section-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.section-description {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--section-shadow);
}

.section-description h3 {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-description ul {
    list-style: none;
    padding: 0;
}

.section-description li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.section-description li:last-child {
    border-bottom: none;
}

.collage-container {
    flex: 2;
    padding: 3rem;
    background-image: url('https://gordons.s3.amazonaws.com/background.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.collage-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 8px solid white;
}


@media (max-width: 768px) {
    .collage-container {
        padding: 1.5rem;
    }

    .section-row {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .section-row:nth-child(even) {
        flex-direction: column;
    }

    .collage-grid img {
        height: 150px;
    }

    .category {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .category:nth-child(even) {
        flex-direction: column;
    }

    .category-image {
        width: 100%;
        height: 200px;
    }

    .department-hero {
        padding: 3rem 1rem;
    }

    .department-hero h1 {
        font-size: 2rem;
    }

    .department-categories {
        padding: 2rem 1rem;
    }
}

/* Navigation */
nav {
    background-color: var(--primary-color);
    transition: all var(--transition-speed);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 1000;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateZ(0) perspective(1000px) rotateX(0.5deg);
    transform-origin: top;
}

nav.scrolled {
    background-color: rgba(219, 55, 51, 0.85);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateZ(0) perspective(1000px) rotateX(0.25deg);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

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

.logo {
    height: 105px;
    transition: var(--transition-speed);
}

.header-phone-button {
    margin-right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-phone-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-phone-button i {
    font-size: 1.2rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
    transition: var(--transition-speed);
    font-size: 1.2rem;
}

.nav-links a:not(.social-icon)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    transition: var(--transition-speed);
}

.nav-links a:not(.social-icon):hover::after {
    width: 100%;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.5rem;
    transition: var(--transition-speed);
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Main Content */
main {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    background-color: white;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero picture,
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero img {
    transform: scale(1.1);
    animation: zoomOut 20s ease-out forwards;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 12rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-overlay p {
    font-size: 1.75rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* About Page */
.about-hero {
    display: none;
}

.about-content {
    display: flex;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-text-container {
    flex: 1;
}

.about-content h1 {
    text-align: left;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.about-image {
    flex: 1;
    position: sticky;
    top: 140px;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-motto {
    margin-top: 3rem;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.about-motto p:first-child {
    margin-bottom: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Contact Page */

.contact-image {
    flex: 1;
    position: sticky;
    top: 140px;
}

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


/* Location Section */
.location {
    padding: 6rem 2rem;
    background-color: white;
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.location h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--text-color);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.map {
    flex: 1.5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--section-shadow);
    display: flex;
}

.map iframe {
    height: 100%;
    min-height: 500px;
}

.address {
    flex: 1;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--section-shadow);
}

.address h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-family: var(--heading-font);
    font-size: 1.2rem;
}

.address-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-speed);
}

.address-phone:hover {
    color: var(--text-color);
}

.hours-grid {
    margin-top: 1rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--section-shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    transition: var(--transition-speed);
}

.day:last-child {
    border-bottom: none;
}

.day:hover {
    background-color: #f8f8f8;
    padding-left: 2rem;
}

.day span:first-child {
    font-weight: 600;
    color: var(--text-color);
}

.day span:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* Departments Section */
.departments {
    padding: 6rem 2rem;
    background-color: white;
    position: relative;
}

.departments h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
}

.departments-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.department {
    background-color: white;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-speed);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.department:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.department:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.department-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    transition: var(--transition-speed);
    margin: 0 auto;
    display: block;
}

.department:hover .department-image {
    transform: scale(1.05);
}

.department-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.department h3 {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.25rem;
}

.department p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Facebook Feed Section */
.facebook-feed {
    padding: 6rem 2rem;
    background-color: white;
    position: relative;
}

.facebook-feed h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
}

.facebook-feed-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.facebook-feed-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.facebook-feed-right {
    flex: 1;
}

.facebook-feed-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--section-shadow);
}

.fb-mobile {
    display: none;
}

@media (max-width: 768px) {

    .fb-desktop {
        display: none
    }

    .fb-mobile {
        display: block
    }

    .facebook-feed {
        padding: 3rem 1rem;
    }

    .facebook-feed-content {
        flex-direction: column;
        gap: 2rem;
    }

    .facebook-feed-left {
        justify-content: center;
    }

    .facebook-feed-right {
        display: none
    }




}



/* Reviews Section */
.reviews {
    padding: 6rem 2rem;
    background-color: var(--background-color);
    position: relative;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.review {
    text-align: center;
    flex: 1 1 calc(50% - 1rem);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--section-shadow);
    transition: var(--transition-speed);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.review::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.review.active {
    display: flex;
}

.review:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-style: italic;
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-controls button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.review-pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 0 1rem;
}

.review-page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-page-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background-color: #5C5D67;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.cta h2 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-content {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-button {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: white;
    color: var(--primary-color);
    transition: var(--transition-speed);
    min-width: 220px;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.phone-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.phone-button i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--footer-color);
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content .social-icon {
    color: #474647;
    transition: var(--transition-speed);
    font-size: 1.75rem;
}

.footer-content .social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-speed);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom .copyright {
    font-size: 0.9rem;
    color: #666;
}

.footer-bottom .site-credit {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.footer-bottom .site-credit a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-speed);
    font-weight: 500;
}

.footer-bottom .site-credit a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
/* Privacy Policy Page */
.privacy-content {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-container {
    background-color: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--section-shadow);
}

.privacy-container h1 {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--text-color);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

@media (max-width: 768px) {
    .privacy-content {
        padding: 3rem 1rem;
    }

    .privacy-container {
        padding: 2rem 1.5rem;
    }

    .privacy-container h1 {
        font-size: 2rem;
    }
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .footer-links a {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer-links a:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    footer {
        padding: 2rem 1rem 1.5rem;
    }
}


@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .about-image {
        position: relative;
        top: 0;
    }

    body {
        background-color: white;
    }

    .location-content {
        flex-direction: column;
    }

    .pre-header {
        display: none;
    }

    nav {
        top: 0;
        position: relative;
        padding: 0.5rem 0;
    }

    main {
        margin-top: 0;
    }

    main,
    footer {
        max-width: 100%;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(2, auto);
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        text-align: center;
    }

    .nav-links a[href="about.html"] {
        grid-row: 2;
        grid-column: 1 / span 2;
        justify-self: center;
    }

    .nav-links a[href="index.html#hours"] {
        grid-row: 1;
        grid-column: 1;
    }

    .nav-links a[href="index.html#map"] {
        grid-row: 1;
        grid-column: 2;
    }

    .nav-links a[href="index.html#departments"] {
        grid-row: 1;
        grid-column: 3;
    }

    .nav-links a[href="index.html#contact"] {
        grid-row: 2;
        grid-column: 2 / span 2;
        justify-self: center;
    }

    .logo {
        height: 55px;
    }

    .logo-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .header-phone-button {
        margin-right: 0;
        padding: 0.75rem 2rem;
    }

    .nav-links {
        line-height: 0.5;
        gap: 1rem;
    }

    .contact-image {
        display: none
    }

    /* Mobile notification bar positioning */
    .notification-bar {
        order: -1;
    }
}

/* Notification Bar */
.notification-bar {
    background-color: white;
    padding: 12px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

.notification-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.notification-text {
    color: #DB3733;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
}

.sale-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-details {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.sale-details a,
.sale-details a:visited,
.sale-details a:active {
    color: #ffffff;

    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-speed);
}


.sale-details a:hover {
    color: #d6cdcd;
    text-decoration: underline;
}

.learn-more-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #DB3733;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition-speed);
    border: 2px solid #DB3733;
}

.learn-more-link:hover {
    color: #DB3733;
    background-color: white;
    border-color: #DB3733;
}

/* Sale Page Styles */
.sale-hero {
    background: linear-gradient(135deg, var(--primary-color), #a82a28);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 120px;
}

.sale-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sale-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.sale-items {
    padding: 4rem 2rem;
    background-color: white;
}

.sale-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Force one column on all screen sizes */
    gap: 3rem;
}

.sale-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition-speed);
}

.sale-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.sale-item-image {
    flex: 0 0 200px;
}

.sale-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.sale-item-content {
    flex: 1;
}

.sale-item-content h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.sale-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sale-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.sale-price-current {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.sale-savings {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.sale-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

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

.sale-cta-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.sale-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sale-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.location-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-speed);
    border: 2px solid var(--primary-color);
}

.location-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile styles for sale page */
@media (max-width: 768px) {
    .sale-hero {
        margin-top: 0;
        padding: 3rem 1rem;
    }

    .sale-hero-content h1 {
        font-size: 2.5rem;
    }

    .sale-items {
        padding: 2rem 1rem;
    }

    .sale-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sale-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .sale-item-image {
        flex: none;
    }

    .sale-image {
        height: 250px;
    }

    .sale-cta {
        padding: 3rem 1rem;
    }

    .sale-cta-content h2 {
        font-size: 2rem;
    }

    .sale-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .sale-price {
        justify-content: center;
    }
    .sale-price-current {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
}

@media (min-width: 769px) {
  .sale-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 70%;
    max-width: none;
    margin: 0 auto;
    gap: 1.5rem;
  }
  .sale-item-image {
    flex: none;
    width: 100%;
    max-width: none;
    margin-bottom: 1rem;
  }
  .sale-image {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .sale-item-content {
    width: 100%;
  }
  .sale-price {
    justify-content: center;
  }
  .sale-price-current {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
.white-link,
.white-link:visited,
.white-link:hover,
.white-link:active {
  color: #fff !important;
  text-decoration: underline !important;
}
