/* Contact Page Styles */

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.contact-container {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    position: relative;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    z-index: -1;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
}

.jump-to-form {
    text-align: center;
    margin-bottom: 2rem;
}

.jump-to-form a {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: var(--plum);
    text-decoration: none;
    border-bottom: 1px solid var(--plum);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.jump-to-form a:hover {
    color: var(--burgundy-main);
    border-bottom-color: var(--burgundy-main);
}

/* Setting Up a Session Section */
.setup-section {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
}

.setup-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    text-align: center;
    color: var(--plum);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
}

.setup-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--forest-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--burgundy-main);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--burgundy-main);
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Image Section */
.contact-image-wrapper {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--forest-green) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(90, 124, 90, 0.2);
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    font-family: 'Lato', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Form Section */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--burgundy-main);
    letter-spacing: 0.05em;
}

.required {
    color: var(--burgundy-main);
    font-weight: 500;
}

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.form-group input,
.form-group textarea {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    padding: 0.9rem 1rem;
    border: 1.5px solid rgba(139, 21, 56, 0.2);
    border-radius: 4px;
    background: rgba(250, 248, 245, 0.8);
    color: var(--burgundy-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.submit-button {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--burgundy-main);
    background: rgba(250, 248, 245, 0.9);
    border: 1.5px solid var(--burgundy-main);
    border-radius: 50px;
    padding: 1rem 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.08);
}

.submit-button:hover {
    background: rgba(250, 248, 245, 1);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(90, 124, 90, 0.3);
    text-align: center;
}

.email-direct {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--burgundy-main);
    line-height: 1.6;
}

.email-direct a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-direct a:hover {
    color: var(--burgundy-main);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Setting Up a Session Section */
.setup-section {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
}

.setup-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    text-align: center;
    color: var(--plum);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
}

.setup-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--forest-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--burgundy-main);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--burgundy-main);
    margin: 0;
}

.contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-placeholder {
        height: 400px;
    }
}


@media (max-width: 768px) {
    .setup-section {
        padding: 2rem 1.5rem;
    }
    
    .setup-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    .contact-page {
        padding: 2rem 1rem;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-container::before {
        display: none;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .submit-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}
