/* =========================================================
   ANNELIEN HAIR & MAKE-UP
   Temporary Landing Page
   ========================================================= */


/* =========================
   VARIABLES
========================= */

:root {

    --background: #FCF9F6;
    --text: #2E2A28;
    --muted: #756E69;
    --accent: #B9A79B;
    --border: rgba(46, 42, 40, 0.15);

}


/* =========================
   RESET
========================= */

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


html {
    scroll-behavior: smooth;
}


body {

    background: var(--background);

    color: var(--text);

    font-family: 'Montserrat', sans-serif;

    font-weight: 300;

    min-height: 100vh;

}


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

.page {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    position: relative;

}


/* =========================
   HEADER
========================= */

.header {

    width: 100%;

    padding: 20px 6% 0;

    display: flex;

    justify-content: center;

    align-items: center; 

}


.logo {

    display: block;

}


.logo img {

    display: block;

    width: auto;

    height: 140px;

    max-width: 300px;

}


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

.hero {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 20px 25px 100px;

}


.hero-content {

    width: 100%;

    max-width: 700px;

    margin: 0 auto;

}


/* =========================
   EYEBROW
========================= */

.eyebrow {

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--muted);

    margin-bottom: 28px;

}


/* =========================
   TITLE
========================= */

h1 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(62px, 8vw, 105px);

    line-height: 0.88;

    font-weight: 400;

    letter-spacing: -2px;

    color: var(--text);

}


h1 em {

    font-style: italic;

    font-weight: 400;

}


/* =========================
   DIVIDER
========================= */

.divider {

    width: 45px;

    height: 1px;

    background: var(--accent);

    margin: 38px auto;

}


/* =========================
   INTRO
========================= */

.intro {

    max-width: 500px;

    margin: 0 auto;

    font-size: 14px;

    line-height: 2;

    letter-spacing: 0.3px;

    color: var(--muted);

}


/* =========================
   LOCATION
========================= */

.location {

    margin-top: 22px;

    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--text);
	
}


/* =========================
   INSTAGRAM BUTTON
========================= */

.instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-top: 45px;
    padding: 17px 28px;
    min-width: 220px;

    background: #B9A79B;
    border: 1px solid #B9A79B;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.instagram-button:hover {
    background: #A89589;
    border-color: #A89589;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.arrow {

    font-size: 17px;

    line-height: 1;

    transition: transform 0.35s ease;

}


.instagram-button:hover .arrow {

    transform: translateX(5px);

}


/* =========================
   INSTAGRAM HANDLE
========================= */

.instagram-handle {

    margin-top: 17px;

    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--muted);

}


/* =========================
   FOOTER
========================= */

.footer {

    width: 100%;

    padding: 25px 6% 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


/* =========================
   TABLET
========================= */

@media (min-width: 481px) and (max-width: 768px) {

    .header {
        padding: 22px 6% 0;
    }

    .logo img {
        height: 120px;
        max-width: 260px;
    }

    .hero {
        padding: 25px 25px 75px;
    }



    h1 {

        font-size: clamp(58px, 14vw, 85px);

    }


    .intro {

        max-width: 430px;

        font-size: 13px;

    }

}


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

@media (max-width: 480px) {

    .header {

        padding: 18px 25px 0;

    }


    .logo img {

        height: 105px;

        max-width: 240px;

    }


    .hero {

        padding: 20px 25px 55px;

    }


    .eyebrow {

        font-size: 8px;

        letter-spacing: 3px;

        margin-bottom: 24px;

    }


    h1 {

        font-size: 60px;

        line-height: 0.9;

        letter-spacing: -1px;

    }


    .divider {

        margin: 30px auto;

    }


    .intro {

        font-size: 12px;

        line-height: 1.9;

    }


    .location {

        font-size: 8px;

        letter-spacing: 2px;

        line-height: 1.8;

    }


    .instagram-button {

        width: 100%;

        max-width: 280px;

        margin-top: 35px;

        padding: 16px 20px;

    }


    .footer {

        padding: 20px 25px;

        flex-direction: column;

        gap: 8px;

        text-align: center;

    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }

}