/* Contact Page Styles */

.contact-hero {
    margin: 50px 0;
    padding: 30px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Paytone One', sans-serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-family: 'Minion Pro', serif;
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 3rem;
}

.contact-content {
    margin: 50px 0;
}

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

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background-color: #E8E8D6;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    color: #000000;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.name-message {
    font-family: 'Minion Pro', serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.name-message.show {
    opacity: 1;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #b56e4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.success-popup.show .success-content {
    transform: translateY(0);
    opacity: 1;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #E8E8D6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.success-title {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 15px;
}

.success-message {
    font-family: 'Minion Pro', serif;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.5;
}

.success-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-family: 'Minion Pro', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.success-btn:hover {
    background-color: #b56e4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
    color: white;
    text-decoration: none;
}