/* ========================================
   CONTACT PAGE STYLES
   Add these to your styles.css file
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/gallery-img1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Contact Content Section with Decorative Corners */
.contact-content {
    background: #f8f5f0;
    padding: 5rem 3rem;
    position: relative;
}

/* Decorative gold corner lines */
.contact-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: 200px;
    border-top: 4px solid #c9a961;
    border-left: 4px solid #c9a961;
    pointer-events: none;
}

.contact-content::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    border-bottom: 4px solid #c9a961;
    border-right: 4px solid #c9a961;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid #e5e5e5;
}

.contact-card:hover {
    border-color: #c9a961;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.contact-icon img {
    height: 50px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.contact-card a {
    color: #c9a961;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #1a1a1a;
}

/* Messenger Section */
.messenger-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.messenger-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.messenger-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
}

.messenger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.5);
    background: linear-gradient(135deg, #0066cc 0%, #0084ff 100%);
}

.messenger-icon {
    font-size: 1.5rem;
}

/* Downloads Section */
.downloads-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.downloads-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #fafafa;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    border-color: #c9a961;
    background: #fffdf8;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.2);
}

.download-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.download-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* Map Section */
.map-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-content {
        padding: 3rem 1.5rem;
    }

    /* Smaller decorative corners on mobile */
    .contact-content::before,
    .contact-content::after {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .contact-content::before {
        top: 10px;
        left: 10px;
    }
    
    .contact-content::after {
        bottom: 10px;
        right: 10px;
    }

    .contact-info-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .messenger-section,
    .downloads-section,
    .map-section {
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }

    .messenger-section h2,
    .downloads-section h2,
    .map-section h2 {
        font-size: 2rem;
    }

    .messenger-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .download-btn {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}