/* ===============================
   CONTACT PAGE
================================ */

body {
    margin: 0;
    font-family: 'Roots', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #333;
    background-color: #F7F3F0;
}


.contact-page {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* ---------- HERO ---------- */

.contact-hero {
    position: relative;
    background: url("../images/coming_soon_background.jpg") center/cover no-repeat;
    background-position: center 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Story Script", sans-serif;
}

.contact-hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    width: 100%;
}

.contact-hero h1 {
    font-size: 4.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.5rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- SECTIONS ---------- */

.contact-section {
    padding: 60px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- INFO GRID ---------- */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    padding: 10px 20px;
}

.contact-card {
    background: linear-gradient(135deg, #D4AF37, #f9e076);
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    padding: 25px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.2rem;
    color: #fff !important;
}

.contact-card a {
    color: #333;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* SVG ICON */
.contact-card svg {
    width: 46px;
    height: 46px;
    stroke: #fff;     /* dorado elegante */
    fill: none;
    stroke-width: 1.7;
}

.contact-card img {
    width: 46px;
    height: 46px;
    stroke: #fff;     /* dorado elegante */
    fill: none;
    stroke-width: 1.7;
    filter: invert(100%);
}

/* Para el icono de ubicación que sí necesita fill */
.contact-card svg path,
.contact-card svg circle,
.contact-card svg rect,
.contact-card svg polyline {
    stroke: #fff;
}

.whatsapp-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.whatsapp-link:visited,
.whatsapp-link:hover,
.whatsapp-link:active {
  color: #fff;
}


/* ---------- WHATSAPP ---------- */

.contact-whatsapp {
    background: #fff;
}

.contact-whatsapp h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.contact-whatsapp-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}

.contact-whatsapp-btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #D4AF37, #f9e076);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ---------- CLOSING ---------- */

.contact-closing {
    padding: 40px 20px;
}

.contact-closing p {
    font-size: 1.1rem;
    font-style: italic;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {

    /* ===== HERO ===== */
    .contact-hero {
        min-height: 25vh;           /* hero más bajito */
        background-position: center center;
    }

    .contact-hero-overlay {
        padding: 36px 22px;
    }

    .contact-hero h1 {
        font-size: 2.6rem;
        margin-bottom: 10px;
    }

    .contact-hero p {
        font-size: 1.2rem;
        line-height: 1.55;
    }

    /* ===== SECTIONS ===== */
    .contact-section {
        padding: 50px 20px;
    }

    .contact-container {
        padding: 0 10px;
    }

    /* ===== INFO GRID ===== */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .contact-card {
        padding: 22px 24px;
    }

    .contact-card h3 {
        font-size: 1.35rem;
    }

    .contact-card p {
        font-size: 1.1rem;
        color: #fff !important;
    }

    .contact-card svg {
        width: 40px;
        height: 40px;
    }

    /* ===== WHATSAPP ===== */
    .contact-whatsapp h2 {
        font-size: 2rem;
    }

    .contact-whatsapp-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-whatsapp-btn {
        padding: 13px 30px;
        font-size: 0.95rem;
    }

    /* ===== CLOSING ===== */
    .contact-closing p {
        font-size: 1rem;
    }
}

