@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================================
   POISSONNERIE DIGITAL PROFILE
========================================================= */

:root {
    --primary: #0077b6;
    --primary-dark: #023e5a;
    --primary-light: #48cae4;

    --navy: #023047;
    --ocean: #0096c7;
    --sky: #90e0ef;

    --bg: #f3f9fb;
    --white: #ffffff;

    --text: #123044;
    --text-secondary: #66808e;
    --text-muted: #8ba0aa;

    --border: #dcebf0;

    --green: #25d366;
    --gold: #f4b942;

    --radius: 18px;
    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family: "Inter", sans-serif;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(72, 202, 228, 0.15),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   MAIN PROFILE
========================================================= */

.profile {
    width: 100%;
    max-width: 520px;
    min-height: 100vh;

    margin: 0 auto;

    background: var(--white);

    overflow: hidden;

    box-shadow:
        0 0 50px rgba(2, 48, 71, 0.08);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #eaf8fc 0%,
            #ffffff 100%
        );
}

.cover {
    position: relative;

    height: 205px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--primary)
        );
}

.cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Dark gradient over image */

.cover::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(2, 48, 71, 0.05),
            rgba(2, 48, 71, 0.65)
        );
}


/* Ocean light */

.cover::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -60px;

    border-radius: 50%;

    background: var(--primary-light);

    filter: blur(80px);

    opacity: 0.3;

    z-index: 1;
}


/* =========================================================
   PROFILE CONTENT
========================================================= */

.profile-content {
    position: relative;

    text-align: center;

    padding: 0 24px 30px;
}

.logo-wrapper {
    position: relative;

    width: 108px;
    height: 108px;

    margin: -54px auto 17px;

    padding: 4px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary)
        );

    box-shadow:
        0 0 0 5px var(--white),
        0 8px 30px rgba(0, 119, 182, 0.25);

    z-index: 5;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    background: #eef8fb;
}

.profile-content h1 {
    margin-bottom: 8px;

    color: var(--navy);

    font-size: 25px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.5px;
}

.profile-content p {
    max-width: 350px;

    margin: auto;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}

.location {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 13px;

    color: var(--text-secondary);

    font-size: 12px;
}

.location i {
    color: var(--primary);

    font-size: 13px;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.actions {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 9px;

    padding: 0 18px 28px;
}

.action-card {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 88px;

    padding: 12px 5px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    box-shadow:
        0 5px 18px rgba(2, 48, 71, 0.05);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.action-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 150, 199, 0.35);

    box-shadow:
        0 12px 28px rgba(0, 119, 182, 0.12);
}

.action-card .icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--ocean)
        );

    color: var(--white);

    font-size: 17px;

    box-shadow:
        0 7px 18px rgba(0, 119, 182, 0.2);
}

.action-card span {
    color: var(--text);

    font-size: 10px;

    font-weight: 600;
}

.action-card.whatsapp .icon {
    background: var(--green);

    box-shadow:
        0 7px 18px rgba(37, 211, 102, 0.18);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 4px 18px 26px;
}

.section-title {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}

.section-title span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--border)
        );
}

.section-title span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--border),
            transparent
        );
}

.section-title h2 {
    color: var(--primary-dark);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.7px;

    white-space: nowrap;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.info-card {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 10px;

    padding: 14px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow:
        0 5px 18px rgba(2, 48, 71, 0.04);

    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(0, 119, 182, 0.3);

    box-shadow:
        0 10px 25px rgba(0, 119, 182, 0.08);
}

.info-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaf8fc;

    color: var(--primary);

    font-size: 16px;
}

.info-text {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.info-text small {
    color: var(--text-muted);

    font-size: 9px;
}

.info-text strong {
    overflow: hidden;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.small-action {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: #f4fafc;

    color: var(--primary);

    font-size: 11px;

    transition: var(--transition);
}

.small-action:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.social-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.social-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow:
        0 5px 18px rgba(2, 48, 71, 0.04);

    transition: var(--transition);
}

.social-item:hover {
    transform: translateX(4px);

    border-color:
        rgba(0, 119, 182, 0.3);
}

.social-item > div {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--primary)
        );

    color: var(--white);

    font-size: 17px;
}

.social-item span {
    flex: 1;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;
}

.social-item > i {
    color: var(--text-muted);

    font-size: 10px;

    transition: var(--transition);
}

.social-item:hover > i {
    color: var(--primary);

    transform: translateX(3px);
}


/* =========================================================
   LOCATION
========================================================= */

.location-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: var(--white);

    box-shadow:
        0 8px 25px rgba(2, 48, 71, 0.06);
}

.map-placeholder {
    position: relative;

    height: 155px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dff5fa,
            #b9e9f2
        );
}


/* Map waves */

.map-placeholder::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 120px;

    bottom: -70px;
    left: -20px;

    border-radius: 50%;

    background:
        rgba(0, 119, 182, 0.12);

    transform: rotate(-8deg);
}

.map-placeholder::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 100px;

    top: -60px;
    right: -50px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.5);

    transform: rotate(12deg);
}

.map-placeholder i {
    position: relative;

    z-index: 3;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);

    font-size: 21px;

    box-shadow:
        0 8px 25px rgba(0, 119, 182, 0.3);
}

.location-info {
    padding: 17px;
}

.location-info strong {
    display: block;

    margin-bottom: 6px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 800;
}

.location-info p {
    margin-bottom: 15px;

    color: var(--text-secondary);

    font-size: 11px;

    line-height: 1.6;
}

.maps-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--ocean)
        );

    color: var(--white);

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(0, 119, 182, 0.18);

    transition: var(--transition);
}

.maps-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0, 119, 182, 0.25);
}


/* =========================================================
   GOOGLE REVIEW
========================================================= */

.review-section {
    position: relative;

    overflow: hidden;

    margin: 3px 18px 25px;

    padding: 29px 20px;

    border: 1px solid #dceff4;

    border-radius: 22px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #effaff,
            #e5f7fb
        );
}

.review-section::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    top: -90px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--primary-light);

    filter: blur(65px);

    opacity: 0.25;
}

.review-icon {
    position: relative;

    width: 51px;
    height: 51px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;

    border: 1px solid #f1dfac;

    border-radius: 50%;

    background: #fffaf0;

    color: var(--gold);

    font-size: 17px;
}

.review-section h2 {
    position: relative;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 16px;

    font-weight: 800;
}

.review-section p {
    position: relative;

    margin-bottom: 18px;

    color: var(--text-secondary);

    font-size: 11px;
}

.review-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--primary-dark)
        );

    color: var(--white);

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(2, 48, 71, 0.2);

    transition: var(--transition);
}

.review-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   ADD CONTACT
========================================================= */

.add-contact {
    padding: 0 18px 27px;
}

.add-contact button {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px;

    border: 1px solid #b9dce7;

    border-radius: 13px;

    background: #f5fbfd;

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.add-contact button i {
    color: var(--primary);
}

.add-contact button:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 119, 182, 0.2);
}

.add-contact button:hover i {
    color: var(--white);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 25px 20px 35px;

    border-top: 1px solid var(--border);

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f8fcfd,
            #eef8fa
        );
}

footer p {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;
}

footer small {
    color: var(--text-muted);

    font-size: 9px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 420px) {

    body {
        background: var(--white);
    }

    .profile {
        box-shadow: none;
    }

    .cover {
        height: 175px;
    }

    .profile-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .action-card {
        min-height: 92px;
    }

    .section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .review-section {
        margin-left: 14px;
        margin-right: 14px;
    }

    .add-contact {
        padding-left: 14px;
        padding-right: 14px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 350px) {

    .actions {
        gap: 6px;
    }

    .action-card {
        min-height: 82px;
    }

    .action-card .icon {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .action-card span {
        font-size: 9px;
    }

    .profile-content h1 {
        font-size: 22px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .action-card:hover,
    .info-card:hover,
    .social-item:hover,
    .maps-btn:hover,
    .review-btn:hover,
    .add-contact button:hover {
        transform: none;
    }
}