
.nav-menu a.active {
    color: #D2B48C;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.locations-page {
    padding-top: 10rem;
    min-height: 100vh;
    background-color: #FBF5E9;
}

.locations-container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.locations-title {
    text-align: center;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: #4A3426;
    margin-bottom: 5rem;
    letter-spacing: 0.05em;
    position: relative;
}

.locations-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    max-width: 50rem;
    height: 1.2rem;
    background-image: url('../images/locations&hours-underline.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
}

.location-card {
    background-color: #4A3426;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card {
    flex-direction: row;
}

.location-image {
    flex:2;
    position: relative;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-card:first-child .location-image img {
    /* border: 4px solid #3B82C4; */
}

.location-info {
    flex: 1;
    padding: 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-name {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
}

.location-name::after {
    content: '';
    position: absolute;
    bottom: -1.0rem;
    left: 0;
    width: 70%;
    max-width: 30rem;
    height: 1.5rem;
    background-image: url('../images/location-underline.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.store-hours h3::after {
     content: '';
    position: absolute;
    bottom: -1.0rem;
    left: 0;
    width: 55%;
    max-width: 12rem;
    height: 1.2rem;
    background-image: url('../images/store-hours-underline.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.contact-info h3::after {
     content: '';
    position: absolute;
    bottom: -1.0rem;
    left: 0;
    width: 50%;
    max-width: 6rem;
    height: 1.2rem;
    background-image: url('../images/phone-underline.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.location-address {
    margin-bottom: 2.5rem;
}

.location-address p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #FBF5E9;
}

.store-hours {
    margin-bottom: 2.5rem;
}

.store-hours h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: white;
    position: relative;
    
}

.hours-list p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #FBF5E9;
    font-weight: 500;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: white;
    position: relative;
}

.phone-number {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FBF5E9;
    letter-spacing: 0.05em;
}

.coming-soon {
    text-align: center;
    background-color: transparent;
    border-radius: 30px;
    padding: 4rem;
}

.coming-soon-title {
    font-size: 53.42px;
    font-weight: 700;
    color: #5C3D2E;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    position: relative;
}

.coming-soon-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 50rem;
    height: 1rem;
    background-image: url('../images/coming-soon-underline.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.coming-soon-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coming-soon-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.coming-soon-row p {
    font-size: 1.6rem;
    font-weight: 600;
    color: #5C3D2E;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .locations-page {
        padding-top: 7rem;
    }

    .locations-container {
        padding: 0 1.5rem 4rem;
    }

    .locations-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }


    .location-card,
    .location-card:nth-child(even) {
        flex-direction: column;
    }

    .location-image {
        flex: 1;
        height: 25rem;
    }

    .location-name::after {
        left: 0;
        transform: none;
        width: 60%;
    }
    .location-card:first-child .location-image {
        border: none;
        margin: 0;
    }

    .location-info {
        padding: 3rem 2rem;
    }

    .location-name {
        font-size: 2.2rem;
    }

    .location-name::after {
        left: 0;
        width: 30%;
    }

    .location-address p {
        font-size: 1.6rem;
    }

    .store-hours h3,
    .contact-info h3 {
        font-size: 1.7rem;
    }

    .hours-list p {
        font-size: 1.4rem;
    }

    .phone-number {
        font-size: 1.6rem;
    }

    .coming-soon {
        padding: 3rem 2rem;
    }

    .coming-soon-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .coming-soon-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30%;
        height: 6px;
    }

    .coming-soon-row {
        flex-direction: column;
        gap: 1rem;
    }

    .coming-soon-row p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .locations-title {
        font-size: 2.3rem;
    }

    .locations-grid {
        gap: 2.5rem;
    }

    .location-card {
        border-radius: 20px;
    }

    .location-image {
        height: 20rem;
    }

    .location-info {
        padding: 2rem 1.5rem;
    }

    .location-name {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .location-address {
        margin-bottom: 1.5rem;
    }

    .location-address p {
        font-size: 1.4rem;
    }

    .store-hours {
        margin-bottom: 1.5rem;
    }

    .store-hours h3,
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hours-list p {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .coming-soon {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-row p {
        font-size: 1.3rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card {
    animation: fadeInUp 0.8s ease forwards;
}

.location-card:nth-child(1) {
    animation-delay: 0.1s;
}

.location-card:nth-child(2) {
    animation-delay: 0.3s;
}

.coming-soon {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.map-container {
    width: 100%;
    height: 40rem;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media print {
    .navbar,
    .footer,
    .mobile-menu-overlay {
        display: none;
    }

    .locations-page {
        padding-top: 0;
    }

    .location-card {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid #5C3D2E;
        page-break-inside: avoid;
    }

    .location-card,
    .location-card:nth-child(even) {
        flex-direction: column;
    }

    .location-image {
        display: none;
    }
}