/**
 * Sweets Website
 * =============================================================
 * File: assets/css/pages/contact.css
 * Description: Premium styles for the Contact Page
 * =============================================================
 */

.p-contact-page {
    background-color: #fff;
    min-height: 100vh;
}

/* Hero Section */
.c-contact-hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.c-contact-hero__title {
    font-family: var(--ff-heading, 'Quando', serif);
    font-size: 3rem;
    color: var(--clr-secondary, #7b1d1d);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.c-contact-hero__desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Contact Hero Cards */
.c-contact-hero__card-grid {
    display: flex;
    gap: 1.5rem;
}

.c-contact-card {
    background: #fff;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    border: 1px solid #f0f0f0;
}

.c-contact-card__label {
    display: block;
    color: #b01a1a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.c-contact-card__value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

/* Hero Image with Curved Mask */
.c-contact-hero__image-wrap {
    position: relative;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    /* Simulate the curve from screenshot */
    border-bottom-left-radius: 120px;
}

.c-contact-hero__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.c-contact-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.c-contact-hero__overlay-tag {
    background: #d67a18;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.c-contact-hero__overlay-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.c-contact-hero__overlay-sub {
    font-size: 1rem;
    opacity: 0.9;
}

/* Details Section */
.c-contact-details {
    padding: 5rem 0;
    background: #fff;
}

.c-contact-info__brand-name {
    font-family: var(--ff-heading, 'Quando', serif);
    color: #b01a1a;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.c-contact-info__brand-desc {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
}

.c-contact-info__title {
    font-family: var(--ff-heading, 'Quando', serif);
    color: #b01a1a;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.c-contact-info__item {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #333;
}

.c-contact-info__item strong {
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .c-contact-hero__title {
        font-size: 2.25rem;
    }

    .c-contact-hero__image-wrap {
        height: 350px;
        margin-top: 3rem;
    }

    .c-contact-hero__card-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .c-contact-hero {
        padding: 3rem 0;
    }

    .c-contact-details {
        padding: 3rem 0;
    }

    .c-contact-info__brand-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .c-contact-hero__title {
        font-size: 1.85rem;
    }

    .c-contact-hero__image-wrap {
        height: 280px;
        border-bottom-left-radius: 80px;
    }

    .c-contact-card {
        padding: 1rem 1.5rem;
    }

    .c-contact-card__value {
        font-size: 1.1rem;
    }
}