@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

/* ===== Global Styles ===== */
:root {
    --lightPurple: #876ca0;
    --burntOrange: #ad6650;
    --muteGreen: #f6f5ea;
}

body {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

#bodyWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== Main Body Styles ===== */
#contactHeroContainer {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
}

.contactImage {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
}

.contactOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--lightPurple);
    background: var(--muteGreen);
    font-size: 2.5rem;
    font-weight: bold;
    padding: 1rem 2.5rem;
    text-align: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 0.5rem;
    pointer-events: none;
    width: fit-content;
    max-width: 90vw;
}

/* ===== Two Column Layout ===== */
.contact-columns {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    gap: 40px;
}

.column {
    flex: 1;
    min-width: 0;
}

/* ===== Staff Phone Numbers Column ===== */
.phoneNumberContainer {
    background-color: var(--muteGreen);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stylist-info {
    text-align: center;
    color: var(--lightPurple);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: underline;
}

.phoneNumberList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phoneNumberList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background-color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.phoneNumberList li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.staff-name {
    font-size: 1.3rem;
    color: var(--lightPurple);
    font-weight: bold;
}

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

.staff-phone:hover {
    color: var(--lightPurple);
    text-decoration: underline;
}

/* ===== Business Info Column ===== */
.businessInfoContainer {
    background-color: var(--muteGreen);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-info {
    text-align: center;
}

.business-info h2 {
    text-align: center;
    color: var(--lightPurple);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: underline;
}

.address {
    font-size: 2rem;
    color: var(--lightPurple);
    margin-bottom: 1rem;
    line-height: .09;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--burntOrange);
}

.contact-method a {
    color: var(--burntOrange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--lightPurple);
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--lightPurple);
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ==== Tablet Queries ==== */
@media (min-width: 601px) and (max-width: 1024px) {
/* ==== Main Body ==== */
    .contact-columns {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .column {
        width: 100%;
    }
    
    .phoneNumberList li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .address {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 250px;
        border: 0;
    }
}

/* ==== Mobile Queries ==== */
@media (max-width: 600px) {
/* ==== Main Body ==== */
  .contact-columns {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  
  .column {
    width: 100%;
  }
  
  .phoneNumberList li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .address {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .contact-methods {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .map-container iframe {
    height: 250px;
  }
}