* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #0f0f0f;
    color: white;
}
/* ================= HEADER ================= */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 60px;

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);

    z-index: 1000;
}

.logo-area {
    display: flex;

    align-items: center;

    gap: 14px;
}

.logo {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.logo-area h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    font-weight: 600;

    color: white;
}

nav a {
    color: white;

    text-decoration: none;

    font-size: 14px;

    transition: color .3s ease;
}

nav a:hover {
    color: #D4AF37;
}

/* ================= CONTACT HERO ================= */

.contact-hero {
    max-width: 850px;

    min-height: auto;

    margin: 0 auto;

    padding: 105px 30px 60px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.contact-tag {
    color: #D4AF37;

    font-size: 15px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.contact-hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: 72px;

    font-weight: 600;

    line-height: 1.05;

    margin-bottom: 25px;
}

.contact-intro {
    max-width: 650px;

    color: #cfcfcf;

    font-size: 17px;

    line-height: 1.8;
}


/* ================= CONTACT OPTIONS ================= */

.contact-options {
    max-width: 850px;

    margin: 0 auto;

    padding: 20px 30px 110px;
}

.contact-links {
    display: flex;
    flex-direction: column;
}


/* ================= CONTACT LINKS ================= */

.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-links a {
    display: flex;
    align-items: center;

    gap: 22px;

    padding: 22px 8px;

    color: white;
    text-decoration: none;

    border-bottom: 1px solid rgba(212, 175, 55, 0.16);

    transition:
        color 0.3s ease,
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.contact-links a:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.contact-links a:hover {
    color: #D4AF37;
    padding-left: 14px;
    border-color: rgba(212, 175, 55, 0.45);
}


/* ================= ICONS ================= */

.contact-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #D4AF37;
}

.contact-icon svg {
    width: 24px;
    height: 24px;

    fill: currentColor;
}

.contact-icon rect,
.contact-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-icon circle:last-child {
    fill: currentColor;
    stroke: none;
}

.contact-links a:hover .contact-icon {
    transform: scale(1.08);
}

.contact-icon {
    transition: transform 0.3s ease;
}


/* ================= CONTACT TEXT ================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info span {
    font-family: "Times New Roman", Times, serif;

    font-size: 29px;

    font-weight: 500;
}

.contact-info small {
    color: #999;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    letter-spacing: 0.3px;
}


/* ================= DIGITAL STUDIO ================= */

.digital-note {
    max-width: 850px;

    margin: 25px auto 0;

    padding: 32px 8px 100px;

    text-align: center;

    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.digital-note span {
    display: block;

    font-family: "Times New Roman", Times, serif;

    font-size: 28px;

    color: #D4AF37;

    font-weight: 500;

    margin-bottom: 8px;
}

.digital-note small {
    color: #999;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.7;
}
/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: white;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .4);

    z-index: 2000;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
}

.whatsapp-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    header {
        padding: 15px 20px;
    }

    .logo-area {
        gap: 10px;
    }

    .logo {
        width: 36px;
        height: 36px;
    }

    .logo-area h2 {
        font-size: 24px;
    }

    nav a {
        font-size: 15px;
        padding: 6px 2px;
    }


    /* CONTACT HERO */

    .contact-hero {
        min-height: auto;

        padding: 105px 22px 45px;

        justify-content: flex-start;
    }

    .contact-tag {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .contact-hero h1 {
        font-size: 48px;
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .contact-intro {
        font-size: 15px;
        line-height: 1.7;
        max-width: 340px;
    }


    /* CONTACT OPTIONS */

    .contact-options {
        padding: 10px 22px 80px;
    }

    .contact-links a {
        padding: 19px 2px;
        gap: 15px;
    }

    .contact-icon {
        width: 34px;
        height: 34px;
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-info span {
        font-size: 25px;
    }

    .contact-info small {
        font-size: 11px;
    }


    /* DIGITAL STUDIO */

    .digital-note {
        padding: 28px 5px 80px;
    }

    .digital-note span {
        font-size: 25px;
    }

    .digital-note small {
        font-size: 12px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 60px;
        height: 60px;

        right: 18px;
        bottom: 18px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}
