﻿/* CONTACT PAGE STYLES */

/* Contact Section */
.contact-section {
    background: url('../Images/Flag.jpg') no-repeat center center/cover;
    padding: 80px 20px; /* Adds spacing around the container */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Container */
.contact-container {
    min-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Headings */
.contact-heading h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-heading h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
}

/* Email Section */
.email-section {
    margin: 20px 0;
    font-size: 1.2rem;
}

    .email-section a {
        color: var(--red);
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s;
    }

        .email-section a:hover {
            color: #a00;
            text-decoration: underline;
        }

/* Contact Addresses */
.contact-addresses {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Address Card */
.address-card {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--grey);
    border: .5px solid #000; /* Thin black outline */
}

    .address-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    }

    .address-card a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
    }

        .address-card a:hover {
            color: var(--red);
        }

    .address-card .store-hours-block {
        width: 100%;
        margin-top: 15px;
    }

    .address-card .store-hours {
        margin-top: 10px;
        width: 100%;
        padding: 10px;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

/* Map */
.map-wrapper {
    width: 100%;
    max-width: 100%;
    display: block;
}

    .map-wrapper iframe {
        width: 100%;
        height: 400px;
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

/* Store Hours */
.store-hours {
    background: #fff;
    margin: 20px auto;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 320px;
    text-align: left;

}

    .store-hours h3 {
        text-align: center;
        margin-bottom: 10px;
        font-weight: 700;
    }

/* Store Status */
.store-status {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.open-status {
    color: green;
}

.closed-status {
    color: red;
}

/* Opening Hours */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .opening-hours li::before {
        content: none !important; /* Remove check marks */
    }

    .opening-hours li {
        display: flex;
        justify-content: space-between;
        padding: 6px 10px;
        border-bottom: 1px solid #eee;
    }

        .opening-hours li.active-day {
            background: #c8f7c5; /* Brighter green */
            font-weight: bold;
            color: #2a6e2a; /* Dark green text */
            border-left: 5px solid #28a745; /* Green highlight bar on the left */
            padding-left: 10px;
            font-size: 1.05em;
            gap: 10px;
        }
/* Responsive Layout */
@media (max-width: 1024px) {
    .contact-addresses {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-addresses {
        grid-template-columns: 1fr; /* One card per row */
    }

    .address-card {
        width: 100%; /* Stretch full width */
        max-width: 400px; /* Prevent smaller fixed width */
        margin: 0 auto; /* Center if needed */
    }

    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .map-wrapper iframe {
        width: 400px;
        max-width: 600px;
        height: 400px;
    }
}
