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

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

html {
    scroll-behavior: smooth;
}

body {
    background: #f6f1e8;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* =========================
   BACKGROUND BLURS
========================= */

.bg-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.bg-blur-1 {
    width: 500px;
    height: 500px;
    background: #000;

    top: -200px;
    right: -100px;
}

.bg-blur-2 {
    width: 400px;
    height: 400px;
    background: #c7b299;

    bottom: -100px;
    left: -100px;
}

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

.navbar {
    width: 100%;

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

    padding: 30px 8%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 3px;
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    color: #111;
}

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

.hero {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 120px 8% 80px;
    gap: 80px;
}

.hero-left {
    max-width: 600px;
}

.hero-label {
    letter-spacing: 5px;
    font-size: 0.75rem;
    opacity: 0.5;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 0.9;

    margin: 20px 0;
}

.hero-divider {
    width: 120px;
    height: 2px;

    background: #111;

    transform: skew(-40deg);

    margin: 30px 0;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-subtext {
    line-height: 1.9;
    opacity: 0.75;
}

.hero-button {
    display: inline-block;

    margin-top: 40px;

    padding: 18px 36px;

    background: #111;
    color: white;

    border-radius: 50px;

    text-decoration: none;

    transition: all 0.4s ease;
}

.hero-button:hover {
    transform: translateY(-5px);
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 40px;

    transform: rotate(-3deg);

    box-shadow:
        0 40px 80px rgba(0,0,0,0.15);
}

.floating-card {
    position: absolute;

    bottom: -30px;
    left: -30px;

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(10px);

    padding: 20px 30px;

    border-radius: 25px;

    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

/* =========================
   STATEMENT
========================= */

.statement-section {
    padding: 180px 8%;
    text-align: center;
}

.statement-container {
    max-width: 900px;
    margin: auto;
}

.section-label {
    letter-spacing: 5px;
    font-size: 0.75rem;
    opacity: 0.5;
}

.statement-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;

    margin: 30px 0;
}

.statement-container p {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.75;
}

/* =========================
   VALUES
========================= */

.values-section {
    padding: 120px 8%;
}

.values-header {
    margin-bottom: 80px;
}

.values-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 0.9;

    margin-top: 20px;
}

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

.value-card {
    background: rgba(255,255,255,0.5);

    backdrop-filter: blur(10px);

    padding: 60px;

    border-radius: 40px;

    transition: all 0.4s ease;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-number {
    font-size: 5rem;
    opacity: 0.1;
    font-weight: bold;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;

    margin: 20px 0;
}

.value-card p {
    line-height: 1.8;
    opacity: 0.75;
}

/* =========================
   IMAGE BREAK
========================= */

.image-break {
    height: 80vh;

    margin: 100px 0;

    background-image:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('https://shesmash.nl/lib/Designs/SHE%20SMASH%209.jpeg');

    background-size: cover;
    background-position: center;

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

    border-radius: 40px;

    margin-left: 5%;
    margin-right: 5%;
}

.image-break-content span {
    color: white;

    font-family: 'Cormorant Garamond', serif;

    font-size: 5rem;

    text-align: center;
}

/* =========================
   ABOUT
========================= */

.about-section {
    padding: 160px 8%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;

    margin-top: 20px;
}

.about-right p {
    margin-bottom: 30px;
    line-height: 1.9;
    opacity: 0.75;
}

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

.contact-section {
    padding: 160px 8%;
}

.contact-container {
    max-width: 800px;
    margin: auto;

    background: rgba(255,255,255,0.55);

    backdrop-filter: blur(10px);

    padding: 80px;

    border-radius: 50px;

    box-shadow:
        0 30px 60px rgba(0,0,0,0.06);
}

.contact-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;

    margin: 20px 0 50px;
}

/* INPUTS */

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {

    width: 100%;

    padding: 20px;

    border: none;
    border-radius: 20px;

    background: rgba(255,255,255,0.7);

    font-size: 1rem;

    outline: none;
}

.input-group textarea {
    min-height: 180px;
    resize: none;
}

.input-group label {
    position: absolute;

    left: 20px;
    top: 20px;

    opacity: 0.5;

    pointer-events: none;
}

/* BUTTON */

.contact-container button {

    width: 100%;

    padding: 20px;

    border: none;

    border-radius: 50px;

    background: #111;
    color: white;

    font-size: 1rem;

    cursor: pointer;

    transition: all 0.4s ease;
}

.contact-container button:hover {
    transform: translateY(-5px);
}

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

footer {
    padding: 80px 8%;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
}

footer p {
    margin-top: 10px;
    opacity: 0.5;
}

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

.reveal {
    opacity: 0;
    transform: translateY(80px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 900px) {

    .hero,
    .about-section {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .statement-container h2,
    .values-header h2,
    .about-left h2,
    .contact-container h2 {
        font-size: 3rem;
    }

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

    .image-break-content span {
        font-size: 3rem;
    }

    .contact-container {
        padding: 40px 25px;
    }

    .navbar {
        padding: 20px 5%;
    }

}

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

.login-page {

    min-height: 100vh;

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

    background: #f6f1e8;

    overflow: hidden;
    position: relative;
}

/* BACKGROUND GLOW */

.login-page::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

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

    border-radius: 50%;

    top: -250px;
    right: -200px;

    filter: blur(120px);
}

.login-page::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(199,178,153,0.25);

    border-radius: 50%;

    bottom: -150px;
    left: -150px;

    filter: blur(100px);
}

/* LOGIN CONTAINER */

.login-container {

    width: 1200px;
    max-width: 95%;

    min-height: 700px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: rgba(255,255,255,0.45);

    backdrop-filter: blur(20px);

    border-radius: 40px;

    overflow: hidden;

    position: relative;
    z-index: 2;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.08);
}

/* =========================
   LEFT SIDE
========================= */

.login-left {

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,0.92),
            rgba(30,30,30,0.95)
        );

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

    overflow: hidden;
}

/* DIAGONAL OVERLAY */

.login-left::before {

    content: "";

    position: absolute;

    width: 150%;
    height: 150%;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(255,255,255,0.03),
            transparent
        );

    transform: rotate(25deg);

    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {

    0% {
        transform:
            translateX(-20%)
            rotate(25deg);
    }

    100% {
        transform:
            translateX(20%)
            rotate(25deg);
    }
}

/* LOGO IMAGE */

.login-left img {

    width: 70%;
    max-width: 420px;

    object-fit: contain;

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* =========================
   RIGHT SIDE
========================= */

.login-right {

    padding: 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
}

.login-right h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 3.2rem;

    line-height: 1.1;

    margin-bottom: 50px;

    max-width: 500px;
}

/* FORM */

.login-right form {
    width: 100%;
}

/* INPUTS */

.login-right input {

    width: 100%;

    padding: 22px 25px;

    margin-bottom: 20px;

    border: none;

    border-radius: 20px;

    background: rgba(255,255,255,0.75);

    font-size: 1rem;

    outline: none;

    transition: all 0.3s ease;

    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.05);
}

.login-right input:focus {

    background: white;

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

/* BUTTON */

.login-right button {

    width: 100%;

    padding: 22px;

    border: none;

    border-radius: 50px;

    background: #111;

    color: white;

    font-size: 0.95rem;
    letter-spacing: 2px;

    cursor: pointer;

    transition: all 0.4s ease;

    margin-top: 10px;
}

.login-right button:hover {

    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.15);
}

/* FOOTER */

.login-footer {

    margin-top: 40px;

    line-height: 1.8;

    font-size: 0.85rem;

    opacity: 0.55;
}

/* ERROR */

.login-right p[style] {

    margin-top: 20px;

    font-size: 0.9rem;
}

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

@media (max-width: 900px) {

    .login-container {

        grid-template-columns: 1fr;

        min-height: auto;
    }

    .login-left {

        min-height: 320px;
    }

    .login-left img {

        width: 220px;
    }

    .login-right {

        padding: 50px 30px;
    }

    .login-right h2 {

        font-size: 2.2rem;
    }
}