/* Info Bar */
.info-bar {
    background: var(--primary-dark);
    color: white;
    padding: 1.5rem 0;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.info-icon {
    font-size: 1.5rem;
}

.info-text {
    font-weight: 100;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Experience Section */
.experience-section {
    padding: 8rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #999999;
}

.section-header p {
    font-size: 1rem;
    color: #999999;
    max-width: 600px;
    text-transform: uppercase;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    /*background: var(--primary-light);*/
    background: var(--soft-sage);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 100;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    min-height: 4.5rem;
    /*color: var(--primary-dark);*/
    color: white;
}

.experience-card p {
    /*color: var(--text-light);*/
    font-weight: 100;
    color: white;
    font-size: 1.0rem;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4d6c7f;
    /*background: #333924;*/  
    /*background: rgba(0,0,0,0.4);*/
}

.location-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.location-content h2 {
    font-weight: 100;
    line-height: 5rem;
    /*font-family: 'Playfair Display', serif;*/
    font-family: 'Nothing You Could Do';
    font-size: 4.5rem;
    color: var(--banana);
    margin-bottom: 4rem;
}

.location-content p {
    /*font-family: 'Playfair Display', serif;*/
    font-weight: 100;
    color: white;
    font-size: 1.0rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0 auto;
    /* Add these to match experience-card p exactly */
    padding: 0 2rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    /*background: var(--primary-dark);*/
    /*background: #6a7670;*/
    background: white;
    /*color: white;*/
    text-align: center;
    color: #9caf9e;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-phone, .contact-email {
    color: #9caf9e;
    text-decoration: none;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-phone:hover, .contact-email:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-hours p {
    opacity: 0.8;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #9caf9e;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

