/* Contact Page Styles */

/* Hero Section */
.contact-info-section {
    margin-bottom: 3rem;
}

.shop-image img {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.shop-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

/* Contact Methods Section */
.contact-methods-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-left: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-icon {
    color: var(--secondary-color);
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-item:hover .contact-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method-item:hover .contact-details h3 {
    color: var(--secondary-color);
}

.contact-link {
    font-size: 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

/* Business Hours Section */
.business-hours-section {
    margin-top: 3rem;
}

.hours-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-left: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hours-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.hours-card:hover::before {
    opacity: 1;
}

.hours-grid {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.day-column {
    flex: 1;
    text-align: right;
    padding-right: 2rem;
    font-weight: bold;
}

.hours-column {
    flex: 1;
    text-align: left;
}

.day, .hours {
    padding: 0.5rem 0;
    margin: 0;
}

/* SEO Improvements */
.lined-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
}

.lined-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Animation Styles */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), 
                transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.animated-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-method-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-details {
        text-align: center;
    }

    .hours-grid {
        flex-direction: column;
    }

    .day-column, .hours-column {
        text-align: center;
        padding-right: 0;
    }

    .day {
        font-weight: bold;
        margin-top: 1rem;
    }

    .hours {
        margin-bottom: 1rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }
}