/* css/contact.css */
:root {
  --primary-color: #8b5a2b;
  --secondary-color: #6b4423;
  --accent-color: #d4b483;
  --text-color: #2a2118;
  --light-bg: #f8f4ee;
  --white: #ffffff;
  --gray-100: #f5f1eb;
  --gray-200: #e8e2d9;
  --gray-300: #d1c9bc;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --radius-md: 12px;
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body {
    background-color: var(--light-bg);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-form-card,
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-section h3 i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.info-section p {
    color: #555;
    font-size: 1rem;
    margin-left: calc(24px + 0.75rem); /* Align with text */
}

.info-section .highlight {
    color: var(--text-color);
    font-weight: 500;
}

.social-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-section h3 i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: calc(24px + 0.75rem);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.tiktok { background: #000; }
.snapchat { background: #FFFC00; color: #000; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-error {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        order: -1; /* Show info card first on smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }
    .contact-header h1 {
        font-size: 2rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}