/* =========================================================
   JUWELIER VAN KAMPEN
   Sluitingspagina
   ========================================================= */

:root {
    --black: #171716;
    --dark: #242321;
    --cream: #f7f5f0;
    --white: #ffffff;
    --gold: #b49a63;
    --gold-light: #d2bd8c;
    --grey: #77736b;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--black);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   GENERAL
   ========================================================= */

.container {
    width: min(1120px, calc(100% - 50px));
    margin: 0 auto;
}

.narrow {
    max-width: 755px;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold);
}

.gold-line {
    width: 65px;
    height: 1px;
    margin: 28px 0;
    background: var(--gold);
}

.gold-line.centered {
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05;
}


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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 9, .88),
            rgba(10, 10, 9, .55),
            rgba(10, 10, 9, .75)
        ),
        radial-gradient(
            circle at 70% 45%,
            rgba(180, 154, 99, .25),
            transparent 40%
        ),
        #181817;
}


/*
    Subtiele gouden sfeer op de achtergrond.
    Hierdoor blijft de pagina stijlvol zonder dat
    er een externe foto nodig is.
*/

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at 80% 30%,
            rgba(210, 189, 140, .12),
            transparent 30%
        );

    pointer-events: none;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 32px 50px;

    z-index: 5;
}

.logo {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.logo span {
    font-size: 11px;
    letter-spacing: 5px;
    margin-bottom: 6px;
}

.logo strong {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo small {
    margin-top: 7px;

    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: 5px;
    text-align: center;
}


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

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1000px, calc(100% - 50px));
    margin: 0 auto;
}

.hero h1 {
    max-width: 850px;

    font-size: clamp(60px, 8vw, 115px);
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-text {
    max-width: 535px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    font-weight: 300;
}

.hero-text strong {
    color: var(--white);
    font-weight: 500;
}


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

.hero-button,
.dark-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 35px;
    padding: 15px 24px;

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

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.hero-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-button span {
    font-size: 17px;
}


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

.intro {
    text-align: center;
    background: var(--cream);
}

.intro h2 {
    margin-top: 20px;

    font-size: clamp(50px, 6vw, 78px);
}

.intro-text {
    margin-top: 22px;

    color: #5e5b54;

    font-size: 15px;
    font-weight: 300;
}

.signature {
    margin-top: 45px;

    color: var(--grey);

    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.3;
}

.signature strong {
    color: var(--black);
}


/* =========================================================
   SALE
   ========================================================= */

.sale {
    background: var(--dark);
    color: var(--white);
}

.sale-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sale-heading h2 {
    margin-top: 15px;

    font-size: clamp(55px, 7vw, 90px);
}

.sale-heading p {
    margin-top: 20px;

    color: rgba(255, 255, 255, .65);

    font-size: 14px;
    font-weight: 300;
}


/* =========================================================
   DISCOUNT CARDS
   ========================================================= */

.discount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.discount-card {
    position: relative;
    overflow: hidden;

    min-height: 450px;

    display: flex;
    align-items: flex-end;

    border: 1px solid rgba(210, 189, 140, .35);

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(210, 189, 140, .13),
            transparent 50%
        ),
        #1c1c1a;
}

.discount-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: 41px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(210, 189, 140, .22);
    border-radius: 50%;
}

.discount-card::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    top: 65px;
    left: 50%;

    transform: translateX(-50%);

    border: 1px solid rgba(210, 189, 140, .14);
    border-radius: 50%;
}

.discount-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 50px 50px 83px 50px;
    text-align: center;
}

.discount-label {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.discount {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(90px, 10vw, 135px);
    font-weight: 500;
    line-height: .9;
}

.discount sup {
    font-size: .35em;
    /* vertical-align: top; */
}

.discount-card h3 {
    margin-top: 8px;

    font-size: 32px;
}

.small-line {
    width: 40px;
    height: 1px;

    margin: 18px auto;

    background: var(--gold);
}

.discount-card p {
    max-width: 400px;
    margin: auto;

    color: rgba(255, 255, 255, .62);

    font-size: 13px;
    font-weight: 300;
}

.sale-note {
    margin-top: 25px;

    color: rgba(255, 255, 255, .4);

    text-align: center;
    font-size: 10px;
}


/* =========================================================
   FINAL MESSAGE
   ========================================================= */

.final-message {
    text-align: center;
    background: var(--white);
    padding-bottom: 74px;
}

.final-message h2 {
    margin-top: 20px;

    font-size: clamp(50px, 6vw, 80px);
}

.final-message p:not(.eyebrow) {
    max-width: 570px;

    margin: 25px auto 0;

    color: #69655e;

    font-size: 15px;
    font-weight: 300;
}

.dark-button {
    background: var(--black);
    color: var(--white);
}

.dark-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}


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

.footer {
    padding: 80px 0 35px;

    background: var(--black);
    color: var(--white);
}

.footer-logo {
    display: flex;
    flex-direction: column;

    width: fit-content;
    margin: auto;

    font-family: var(--serif);
    line-height: 1;
    text-align: center;
}

.footer-logo span {
    font-size: 10px;
    letter-spacing: 5px;
}

.footer-logo strong {
    margin-top: 5px;

    color: var(--gold-light);

    font-size: 28px;
    letter-spacing: 2px;
}

.footer-logo small {
    margin-top: 8px;

    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: 5px;
}

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 55px 0;

    background: rgba(255, 255, 255, .12);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    text-align: center;
}

.footer-info span {
    color: var(--gold-light);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
}

.footer-info p {
    margin-top: 10px;

    color: rgba(255, 255, 255, .65);

    font-size: 13px;
    font-weight: 300;
}

.footer-info a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 70px;

    color: rgba(255, 255, 255, .3);

    font-size: 10px;
}


/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */

.fade-in {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


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

@media (max-width: 800px) {

    .section {
        padding: 90px 0;
    }

    .navbar {
        padding: 25px;
    }

    .hero-content {
        width: calc(100% - 40px);
    }

    .hero h1 {
        font-size: clamp(52px, 13vw, 90px);
    }

    .discount-grid {
        grid-template-columns: 1fr;
    }

    .discount-card {
        min-height: 400px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}
.voorwaarden{
    background-color: #ffffff;
    font-size: 0.8rem;
    padding: 0 24px 20px;
    font-weight: 300;
}

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

@media (max-width: 500px) {

    .container {
        width: calc(100% - 35px);
    }

    .section {
        padding: 75px 0;
    }

    .navbar {
        padding: 22px 20px;
    }

    .logo strong {
        font-size: 20px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-button {
        width: 100%;
        justify-content: center;
    }

    .intro h2,
    .final-message h2 {
        font-size: 48px;
    }

    .sale-heading h2 {
        font-size: 58px;
    }

    .discount-content {
        padding: 40px 25px;
    }

    .discount {
        font-size: 95px;
    }

    .discount-card {
        min-height: 380px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;

        text-align: center;
    }

}
