/* ================== CONTACT HERO ================== */
#contact-hero {
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('./photos/cashewbaklava.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 160px 0 80px 0;
}

#contact-hero h1 {
    font-size: 4rem;
    color: #fff;
}

#contact-hero p {
    font-size: 1.2rem;
    color: var(--primary-text);
    margin-top: 10px;
}
/* ================== FORM SUCCESS MESSAGE ================== */
.hidden {
    display: none !important; /* Use important to ensure it's hidden */
}

#form-success-message {
    text-align: center;
    padding: 60px 30px;
    border: 1px dashed var(--accent-color);
    border-radius: 15px;
    background-color: var(--bg-color);
    animation: fadeIn 0.5s ease-out;
}

#form-success-message .fa-check-circle {
    font-size: 3rem;
    color: var(--accent-color);
}

#form-success-message h3 {
    font-size: 2rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}

#form-success-message p {
    color: var(--primary-text);
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================== CONTACT INFO FIXES & SOCIAL MEDIA ================== */

/* This will fix the phone and email links to be clickable and styled correctly */
.info-block p a {
    color: var(--primary-text); /* Matches your theme's text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block p a:hover {
    color: var(--accent-color); /* Highlight on hover */
    text-decoration: underline;
}

/* New styles for the social media block */
.social-media-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color); /* Separator line */
}

.social-media-block h4 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start; /* Aligns items to the left */
}

.social-link {
    display: inline-flex; /* Use inline-flex to align icon and text */
    align-items: center;
    gap: 12px;
    color: var(--primary-text);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.social-link i {
    font-size: 1.3rem; /* Makes the icon slightly larger than the text */
    width: 20px; /* Ensures consistent alignment */
    text-align: center;
    color: var(--accent-color); /* Makes icons permanently golden */
}
/* ================== NEW CONTACT PAGE LAYOUT ================== */
#contact-page-content {
    padding-top: 60px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr; /* Left column is wider */
    gap: 50px;
}

/* LEFT COLUMN - INFO STYLES */
.info-block {
    margin-bottom: 40px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-block p {
    font-size: 1rem;
    color: var(--primary-text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.map-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 10px;
    filter: invert(90%) hue-rotate(180deg); /* Dark mode map */
}

.address-details {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
}
.address-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.address-details .btn-secondary {
    margin-top: 15px;
    display: inline-block;
}


/* RIGHT COLUMN - FORM STYLES */
.contact-form-column {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-form-column h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--primary-text);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

#contact-form button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}
/* ================== FORM SUCCESS MESSAGE ================== */
.hidden {
    display: none !important; /* Use important to ensure it's hidden */
}

#form-success-message {
    text-align: center;
    padding: 60px 30px;
    border: 1px dashed var(--accent-color);
    border-radius: 15px;
    background-color: var(--bg-color);
    animation: fadeIn 0.5s ease-out;
}

#form-success-message .fa-check-circle {
    font-size: 3rem;
    color: var(--accent-color);
}

#form-success-message h3 {
    font-size: 2rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}

#form-success-message p {
    color: var(--primary-text);
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr; /* Stack columns on tablets */
    }
}

@media (max-width: 576px) {
    .map-address-grid {
        grid-template-columns: 1fr; /* Stack map and address on small mobile */
    }
}