/* contact.css - Styles for the contact page */

.contact-section {
    padding-bottom: 5rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: -0.5rem;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 3rem;
}

/* Contact Info Styles */
.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 1rem 2rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  .logo img {
    height: 36px;
    width: 36px;
  }
  nav ul {
    display: flex;
    list-style: none;
  }
  nav li {
    margin: 0 10px;
  }
  nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }
  nav a:hover {
    background-color: #0077cc;
    color: #fff;
  }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: #666;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-container {
    flex: 2;
    min-width: 300px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.form-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.checkbox-label {
    cursor: pointer;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 500;
}

.btn-reset {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    margin-left: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.btn-reset:hover {
    background-color: #e9ecef;
}

/* Form Success Message */
.form-success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.success-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-content i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .btn-submit, .btn-reset {
        width: 100%;
        margin: 10px 0 0 0;
    }
}