/**
 * Contact Footer Template Styles
 * 
 * Responsive two-column footer with contact information and map
 */

/* Base Footer Styles */
.contact-footer {
    background-color: #2B2B2B;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-footer__container {
    display: flex;
    min-height: 453px;
    position: relative;
}

/* Right Column: Contact Information */
.contact-footer__content {
    flex: 1;
    background-color: #2B2B2B;
    display: flex;
    align-items: center;
    padding: 48px 48px 48px 48px;
    position: relative;
    z-index: 2;
}

.contact-footer__content-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Heading */
.contact-footer__heading {
    margin-bottom: 8px;
}

.contact-footer__title {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #E1AA1E;
    margin: 0;
}

/* Contact Details */
.contact-footer__details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-footer__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-footer__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-footer__icon svg {
    fill: #FFFFFF;
}

.contact-footer__text {
    font-family: 'Source Serif Pro', serif;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
}

.contact-footer__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.contact-footer__value {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* Hours Section */
.contact-footer__hours {
    padding-top: 16px;
    position: relative;
}

.contact-footer__hours-separator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.contact-footer__hours-title {
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.contact-footer__hours-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-footer__hours-days,
.contact-footer__hours-times {

    display: flex;
    flex-direction: column;
    gap: 0;
font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.contact-footer__hours-line {
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
}

/* Left Column: Map */
.contact-footer__map {
    flex: 1;
    position: relative;
    min-height: 453px;
}

.contact-footer__map-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.contact-footer__map-container iframe,
.contact-footer__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-footer__map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E8E8DB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B2B2B;
    font-size: 18px;
}

/* Call to Action Button */
.contact-footer__cta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
}

.contact-footer__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(180deg, rgba(178, 159, 119, 0) 40.385%, rgba(178, 159, 119, 0.1) 100%), 
                linear-gradient(90deg, #E1AA1E 0%, #E1AA1E 100%);
    border-radius: 40px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 56px;
}

.contact-footer__button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.contact-footer__button:hover svg{
    color:white;
}

.contact-footer__button-text {
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-footer__button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-footer__button-icon svg {
    stroke: #FFFFFF;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .contact-footer__content {
        padding: 32px 40px 32px 32px;
    }
    
    .contact-footer__title {
        font-size: 28px;
    }
    
    .contact-footer__container {
        min-height: 400px;
    }
    
    .contact-footer__map {
        min-height: 400px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-footer__container {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-footer__content {
        padding: 24px 20px;
        flex: none;
        order: 2; /* Contact info appears second on mobile */
    }
    
    .contact-footer__title {
        font-size: 24px;
    }
    
    .contact-footer__map {
        min-height: 300px;
        flex: none;
        order: 1; /* Map appears first on mobile */
    }
    
    .contact-footer__cta {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px;
        text-align: center;
    }
    
    .contact-footer__button {
        display: inline-flex;
        width: auto;
        min-width: 200px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .contact-footer__content {
        padding: 20px 16px;
    }
    
    .contact-footer__title {
        font-size: 20px;
    }
    
    .contact-footer__text,
    .contact-footer__hours-line {
        font-size: 14px;
    }
    
    .contact-footer__button {
        padding: 12px 20px;
        min-height: 48px;
    }
    
    .contact-footer__button-text {
        font-size: 14px;
    }
}

/* Theme Integration */
.contact-footer {
    /* Ensure proper integration with theme */
    margin: 0;
    padding: 0;
}

/* Override any conflicting theme styles */
.contact-footer * {
    box-sizing: border-box;
}

.contact-footer h2,
.contact-footer h3 {
    margin: 0;
    padding: 0;
}

.contact-footer a {
    text-decoration: none;
    color: inherit;
}

.contact-footer a:hover {
    text-decoration: none;
}
