:root {
    --background-dark: #060606;
    --background-soft: #11100e;
    --primary-text: #ffffff;
    --secondary-text: #c7c3bb;
    --gold: #d5b878;
    --gold-light: #f0d89d;
    --border-color: rgba(255, 255, 255, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--background-dark);
    color: var(--primary-text);
    font-family: "Montserrat", sans-serif;
}

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

.page-wrapper {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(213, 184, 120, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0b0a09 50%,
            #050505 100%
        );
}

/* Navbar */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;

    width: 100%;
    min-height: 100px;

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

    padding: 24px 7%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 7px;
    line-height: 1;
}

.brand-sub {
    margin-top: 7px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.72);

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

.status-dot {
    width: 8px;
    height: 8px;

    background: var(--gold);
    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(213, 184, 120, 0.12),
        0 0 18px rgba(213, 184, 120, 0.7);

    animation: pulse 2s infinite;
}

/* Hero */

.hero {
    position: relative;

    min-height: calc(100vh - 82px);

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

    padding: 145px 7% 100px;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 3, 3, 0.92) 0%,
            rgba(3, 3, 3, 0.64) 48%,
            rgba(3, 3, 3, 0.82) 100%
        ),
        url("../images/photography-bg.jpg");

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

    transform: scale(1.06);

    animation: backgroundZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.3)
        ),
        radial-gradient(
            circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 75%,
            rgba(0, 0, 0, 0.82) 100%
        );
}

.light-effect {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(213, 184, 120, 0.12);

    filter: blur(120px);
    pointer-events: none;
}

.light-one {
    top: -150px;
    right: -100px;
}

.light-two {
    bottom: -230px;
    left: -120px;
}

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

    width: 100%;
    max-width: 1000px;

    text-align: center;

    animation: fadeUp 1.3s ease forwards;
}

.welcome-text {
    margin-bottom: 26px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 1000px;
    margin: 0 auto;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(54px, 8vw, 108px);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -1px;
}

.hero-content h1 span {
    display: block;

    margin-top: 18px;

    color: var(--gold-light);

    font-size: clamp(38px, 5vw, 69px);
    font-weight: 400;
    font-style: italic;
}

.gold-line {
    width: 90px;
    height: 1px;

    margin: 36px auto;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    animation: lineGrow 1.5s ease forwards;
}

.description {
    max-width: 680px;
    margin: 0 auto;

    color: var(--secondary-text);

    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.4px;
}

.coming-soon-box {
    width: fit-content;
    min-width: 250px;

    margin: 42px auto 0;
    padding: 17px 34px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 1px solid rgba(213, 184, 120, 0.48);

    background:
        linear-gradient(
            110deg,
            rgba(213, 184, 120, 0.13),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(10px);

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

.coming-soon-box:hover {
    transform: translateY(-4px);

    border-color: var(--gold);

    background:
        linear-gradient(
            110deg,
            rgba(213, 184, 120, 0.22),
            rgba(255, 255, 255, 0.04)
        );
}

.small-text {
    color: rgba(255, 255, 255, 0.58);

    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.coming-soon-box strong {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    right: 4%;
    bottom: 50px;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.scroll-line {
    position: relative;

    width: 1px;
    height: 60px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.18);
}

.scroll-line::after {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 60%;

    background: var(--gold);

    animation: scrollMove 2.2s ease-in-out infinite;
}

/* Footer */

.footer {
    min-height: 82px;

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

    padding: 20px 7%;

    background: #040404;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.powered-by span {
    margin-left: 5px;

    color: var(--gold);
    font-weight: 500;
}

/* Animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.14);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 90px;
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

@keyframes scrollMove {
    0% {
        top: -80%;
    }

    100% {
        top: 120%;
    }
}

/* Tablet */

@media screen and (max-width: 900px) {
    .navbar {
        padding: 22px 5%;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Mobile */

@media screen and (max-width: 600px) {
    .navbar {
        min-height: 85px;
        padding: 18px 20px;
    }

    .brand-main {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .brand-sub {
        font-size: 8px;
        letter-spacing: 3.5px;
    }

    .status {
        max-width: 110px;

        font-size: 8px;
        line-height: 1.6;
        letter-spacing: 1px;
        text-align: right;
    }

    .status-dot {
        flex-shrink: 0;

        width: 6px;
        height: 6px;
    }

    .hero {
        min-height: calc(100vh - 120px);

        padding: 125px 22px 75px;
    }

    .hero-background {
        background-position: 60% center;
    }

    .welcome-text {
        margin-bottom: 20px;

        font-size: 9px;
        line-height: 1.8;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 15vw, 67px);
        line-height: 0.96;
    }

    .hero-content h1 span {
        margin-top: 14px;

        font-size: clamp(31px, 10vw, 45px);
        line-height: 1.05;
    }

    .gold-line {
        margin: 28px auto;
    }

    .description {
        max-width: 430px;

        font-size: 13px;
        line-height: 1.9;
    }

    .coming-soon-box {
        min-width: 220px;

        margin-top: 34px;
        padding: 15px 20px;

        flex-direction: column;
        gap: 5px;
    }

    .footer {
        min-height: 120px;

        padding: 24px 20px;

        flex-direction: column;
        justify-content: center;
        gap: 10px;

        font-size: 10px;
        line-height: 1.7;
        text-align: center;
    }
}