/* Contact Information Page Styles */
.contact-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content {
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: #8b5a3c;
    margin-bottom: 3rem;
    line-height: 1;
}

.contact-grid {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #8b5a3c;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(139, 90, 60, 0.1);
}

/* Hours Section */
.hours-section {
    display: grid;
    grid-template-columns: 1fr;
    border-right: 3px solid #8b5a3c;
}

.hours-item {
    padding: 2rem;
    text-align: center;
    color: #8b5a3c;
}

.hours-item:not(:last-child) {
    border-bottom: 3px solid #8b5a3c;
}

.day-range {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.time-range {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.time-range.closed {
    font-weight: 900;
}

.appointment-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    color: #8b5a3c;
    opacity: 0.8;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* Contact Details Section */
.contact-details {
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid #8b5a3c;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
    color: #8b5a3c;
    gap: 1.5rem;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-link:hover {
    background-color: rgba(139, 90, 60, 0.1);
    transform: translateX(5px);
}

.contact-link:hover .contact-icon {
    background-color: #daa520;
    transform: scale(1.1);
}

.contact-item:not(:last-child) {
    border-bottom: 2px solid #8b5a3c;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8b5a3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f5f1eb;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Location Section */
.location-section {
    background: rgba(139, 90, 60, 0.05);
}

.location-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    color: #8b5a3c;
}

.location-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Grid Layout */
@media (min-width: 768px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .location-section {
        grid-column: 1 / -1;
        border-top: 3px solid #8b5a3c;
    }
    
    .hours-section {
        border-right: 3px solid #8b5a3c;
    }
    
    .contact-details {
        border-bottom: none;
    }
}

/* Back Button */
.back-button-container {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 767px) {
    .contact-container {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        margin-bottom: 2rem;
    }
    
    .hours-section {
        border-right: none;
        border-bottom: 3px solid #8b5a3c;
    }
    
    .hours-item {
        padding: 1.5rem;
    }
    
    .day-range {
        font-size: 1rem;
    }
    
    .time-range {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1.2rem 1.5rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-link:hover {
        transform: none;
        background-color: rgba(139, 90, 60, 0.15);
    }
    
    .contact-text {
        font-size: 1.1rem;
    }
    
    .location-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .location-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 1rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .hours-item {
        padding: 1rem;
    }
    
    .day-range {
        font-size: 0.9rem;
    }
    
    .time-range {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-link:hover {
        transform: none;
        background-color: rgba(139, 90, 60, 0.15);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .location-text {
        font-size: 1rem;
    }
}

/* Animations */
.contact-grid {
    animation: fadeInUp 0.6s ease-out;
}

.contact-title {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 