@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap');

/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #000;
}


/* ========================================
   HOME PAGE
======================================== */

.hero-section {
    width: 100%;
    min-height: 100vh;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.10)
        ),
        url("background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    color: white;
}


/* ========================================
   NAVIGATION
======================================== */

nav {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 32px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 10;

    opacity: 0;
    transform: translateY(-30px);
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    letter-spacing: 7px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: white;
    text-decoration: none;

    font-size: 9px;
    letter-spacing: 2px;

    opacity: 0.9;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.5;
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);
}

.small-title,
.hero-content h1,
.line,
.hero-text {
    opacity: 0;
}

.small-title {
    font-size: 10px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(80px, 11vw, 165px);

    font-weight: 400;
    line-height: 0.75;
    letter-spacing: 5px;
}

.line {
    width: 90px;
    height: 1px;

    background: white;
    margin-top: 45px;
}

.hero-text {
    margin-top: 25px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 27px;
    font-style: italic;
}


/* ========================================
   SCROLL TEXT
======================================== */

.scroll-text {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    color: white;
    text-decoration: none;

    font-size: 8px;
    letter-spacing: 3px;

    opacity: 0.8;

    animation: floating 2s ease-in-out infinite;
}


/* ========================================
   HOME ANIMATIONS
======================================== */

.hero-section.animate nav {
    animation: fadeDown 1s ease forwards;
}

.hero-section.animate .small-title {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-section.animate .hero-content h1 {
    animation: titleReveal 1.4s ease forwards;
    animation-delay: 0.6s;
}

.hero-section.animate .line {
    animation: lineGrow 1s ease forwards;
    animation-delay: 1.3s;
}

.hero-section.animate .hero-text {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.5s;
}


/* ========================================
   ABOUT PAGE
======================================== */

.about-frame {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top right,
            #ffffff 0%,
            #f5f3ee 40%,
            #e8e4dc 100%
        );

    color: #171717;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 20px;

    position: relative;
    overflow: hidden;
}

.about-frame::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.8);

    filter: blur(100px);

    top: -250px;
    right: -200px;
}

.about-frame > * {
    position: relative;
    z-index: 1;
}


/* ========================================
   ABOUT ANIMATION
======================================== */

.about-frame .presents,
.about-frame .brand-title,
.about-frame .brand-line,
.about-frame .brand-quote,
.about-frame .credits,
.about-frame .enter-button {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.about-frame.show .presents {
    opacity: 1;
    transform: translateY(0);
}

.about-frame.show .brand-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-frame.show .brand-line {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about-frame.show .brand-quote {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.about-frame.show .credits {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.about-frame.show .enter-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}


/* ========================================
   ABOUT TEXT
======================================== */

.presents {
    font-size: 9px;
    letter-spacing: 6px;

    color: #777;
    margin-bottom: 35px;
}

.brand-title {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(80px, 13vw, 190px);

    font-weight: 400;
    line-height: 0.75;

    letter-spacing: 8px;
}

.brand-line {
    width: 70px;
    height: 1px;

    background: #777;
    margin-top: 55px;
}

.brand-quote {
    margin-top: 30px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 23px;
    font-style: italic;

    line-height: 1.5;
    color: #555;
}


/* ========================================
   PRODUCERS
======================================== */

.credits {
    margin-top: 70px;
}

.credits-title {
    font-size: 9px;
    letter-spacing: 5px;

    color: #777;
    margin-bottom: 25px;
}

.names {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;
}

.names h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 22px;
    font-weight: 500;

    letter-spacing: 3px;
}

.names span {
    color: #777;
    font-size: 14px;
}


/* ========================================
   ENTER ARCHIVE BUTTON
======================================== */

.enter-button {
    margin-top: 70px;

    padding: 16px 28px;

    border: 1px solid #555;

    color: #171717;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;

    transition: 0.3s;
}

.enter-button:hover {
    background: #171717;

    color: white;

    transform: translateY(-4px);
}


/* ========================================
   ARCHIVE PAGE
======================================== */

.archive-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 20%,
            #242424 0%,
            #101010 40%,
            #070707 100%
        );

    color: #f5f2eb;
}

.archive-back {
    position: fixed;

    top: 30px;
    left: 7%;

    z-index: 100;

    color: #888;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;
}

.archive-premium {
    min-height: 100vh;

    padding: 130px 10% 40px;
}

.archive-hero {
    max-width: 900px;
    margin-bottom: 90px;
}

.archive-label {
    font-size: 9px;
    letter-spacing: 6px;

    color: #777;
    margin-bottom: 25px;
}

.archive-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(70px, 10vw, 150px);

    font-weight: 400;

    letter-spacing: 6px;
    line-height: 0.85;
}

.archive-intro {
    margin-top: 35px;

    max-width: 480px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 23px;
    font-style: italic;

    line-height: 1.4;

    color: #999;
}


/* ========================================
   ARCHIVE BUTTONS
======================================== */

.archive-buttons {
    width: 100%;
    border-top: 1px solid #282828;
}

.premium-button {
    min-height: 145px;

    display: grid;

    grid-template-columns: 80px 1fr 60px;

    align-items: center;

    position: relative;
    overflow: hidden;

    text-decoration: none;
    color: #f5f2eb;

    border-bottom: 1px solid #282828;
}

.premium-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #151515,
            #222222
        );

    transform: translateX(-101%);

    transition: 0.65s;
    z-index: 0;
}

.premium-button:hover::before {
    transform: translateX(0);
}

.button-number,
.button-main,
.button-arrow {
    position: relative;
    z-index: 2;
}

.button-number {
    font-size: 10px;
    letter-spacing: 3px;

    color: #777;
}

.button-main h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(42px, 6vw, 85px);

    font-weight: 400;

    letter-spacing: 4px;
    line-height: 0.9;
}

.button-main p {
    margin-top: 14px;

    font-size: 9px;
    letter-spacing: 2px;

    color: #888;
}

.button-arrow {
    text-align: right;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 48px;
    font-weight: 300;

    color: #777;
}

.archive-premium-footer {
    margin-top: 100px;

    padding-top: 30px;

    border-top: 1px solid #282828;

    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 8px;
    letter-spacing: 3px;
}


/* ========================================
   PHOTOGRAPHY PAGE
======================================== */

.photography-page {
    background: #0b0b0b;

    color: white;

    min-height: 100vh;
}


/* BACK TO ARCHIVE */

.back-archive {
    position: fixed;

    top: 30px;
    left: 7%;

    z-index: 100;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #888;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;
}

.back-arrow {
    font-size: 18px;
}


/* ADD PHOTO */

.add-photo-button {
    position: fixed;

    top: 30px;
    right: 7%;

    z-index: 100;

    color: white;

    display: flex;
    align-items: center;

    gap: 8px;

    cursor: pointer;

    font-size: 9px;
    letter-spacing: 2px;
}

.plus-icon {
    font-size: 22px;
}


/* PHOTO HEADER */

.photo-header {
    min-height: 70vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 70px;
}

.photo-small-title {
    font-size: 9px;
    letter-spacing: 5px;

    color: #888;
    margin-bottom: 30px;
}

.photo-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(70px, 10vw, 160px);

    font-weight: 400;

    line-height: 0.75;
    letter-spacing: 5px;
}

.photo-subtitle {
    margin-top: 45px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 23px;
    font-style: italic;

    color: #aaa;
}

.photo-line {
    width: 70px;
    height: 1px;

    background: #777;
    margin-top: 35px;
}


/* ========================================
   PHOTO GALLERY
======================================== */

.photo-gallery {

    max-width: 1300px;

    margin: auto;

    padding: 40px 7% 100px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}

.photo-item {

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    margin: 0;

    cursor: pointer;

}


.photo-item img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;

}


.photo-item:hover img {

    transform: scale(1.05);

}


/* ========================================
   PHOTO FOOTER
======================================== */

.photo-footer {
    border-top: 1px solid #222;

    padding: 35px 7%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    color: #777;

    font-size: 9px;
    letter-spacing: 3px;
}

.photo-footer p {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 20px;

    color: white;
    letter-spacing: 4px;
}


/* ========================================
   PREMIUM LIGHTBOX
======================================== */

.premium-lightbox {

    display: none;

    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(5, 5, 5, 0.98);

    z-index: 9999;
}

.premium-lightbox.active {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.lightbox-top {

    position: absolute;

    top: 30px;
    left: 7%;
    right: 7%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    z-index: 10;
}

.close-photo {

    background: transparent;
    border: none;

    color: #aaa;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    letter-spacing: 3px;

    cursor: pointer;
}

.delete-premium {

    background: transparent;

    border: 1px solid #b52b2b;

    color: #e34b4b;

    padding: 13px 20px;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    letter-spacing: 2px;

    cursor: pointer;
}

.lightbox-image-container {

    width: 90%;
    height: 85vh;

    display: flex;

    align-items: center;
    justify-content: center;
}

#fullscreen-photo {

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}


/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes lineGrow {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 90px;
        opacity: 1;
    }

}

@keyframes floating {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0);

    }

    50% {

        transform:
            translateX(-50%)
            translateY(-8px);

    }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .photo-gallery {
        columns: 2;
    }

}


/* ========================================
   MOBILE DESIGN
======================================== */

@media (max-width: 700px) {


    /* ====================================
       GENERAL
    ==================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* ====================================
       HOME PAGE - MOBILE FIX
    ==================================== */

    .hero-section {

        width: 100%;

        min-height: 100svh;

        background-size: cover;

        background-position: center;

    }


    nav {

        width: 100%;

        padding: 25px 20px;

    }


    .logo-text {

        font-size: 24px;

        letter-spacing: 3px;

    }


    .nav-links {

        display: none;

    }


    .hero-content {

        position: absolute;

        top: 50%;

        left: 20px;

        width: calc(100% - 40px);

        transform: translateY(-50%);

    }


    .small-title {

        font-size: 9px;

        letter-spacing: 3px;

        margin-bottom: 20px;

    }


    .hero-content h1 {

        font-size: clamp(70px, 20vw, 95px);

        line-height: 0.8;

        letter-spacing: 2px;

    }


    .line {

        width: 70px;

        margin-top: 35px;

    }


    .hero-text {

        margin-top: 20px;

        font-size: 23px;

    }


    .scroll-text {

        width: 100%;

        left: 0;

        transform: none;

        text-align: center;

        font-size: 8px;

        white-space: nowrap;

    }


    /* ====================================
       ABOUT PAGE
    ==================================== */

    .about-frame {

        min-height: 100svh;

        padding: 70px 20px;

    }


    .brand-title {

        font-size: 75px;

        letter-spacing: 4px;

    }


    .brand-quote {

        font-size: 19px;

    }


    .names {

        flex-direction: column;

        gap: 15px;

    }


    .names h3 {

        font-size: 18px;

        letter-spacing: 2px;

    }


    /* ====================================
       ARCHIVE
    ==================================== */

    .archive-premium {

        padding: 120px 7% 40px;

    }


    .archive-hero {

        margin-bottom: 70px;

    }


    .archive-hero h1 {

        font-size: 65px;

        letter-spacing: 3px;

    }


    .archive-intro {

        font-size: 19px;

    }


    .premium-button {

        min-height: 120px;

        grid-template-columns:
            45px
            1fr
            35px;

    }


    .button-main h2 {

        font-size: 40px;

        letter-spacing: 2px;

    }


    .button-main p {

        font-size: 8px;

        line-height: 1.5;

        margin-top: 10px;

    }


    .button-arrow {

        font-size: 32px;

    }


    .archive-premium-footer {

        margin-top: 70px;

        font-size: 7px;

    }


    /* ====================================
       PHOTOGRAPHY
    ==================================== */

    .photo-header {

        min-height: 65svh;

        padding: 100px 20px 50px;

    }


    .photo-header h1 {

        font-size: 70px;

        letter-spacing: 3px;

    }


    .photo-subtitle {

        font-size: 19px;

    }


    .photo-gallery {

        width: 100%;

        columns: 1;

        padding: 20px 15px 80px;

    }


    .photo-item {

        width: 100%;

    }


    .photo-item img {

        width: 100%;

        height: auto;

    }


    .back-archive {

        top: 25px;

        left: 5%;

        font-size: 8px;

    }


    .add-photo-button {

        top: 25px;

        right: 5%;

        font-size: 8px;

    }


    .photo-footer {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }


    /* ====================================
       LIGHTBOX
    ==================================== */

    .lightbox-top {

        top: 20px;

        left: 5%;
        right: 5%;

    }


    .lightbox-image-container {

        width: 95%;

        height: 80vh;

    }


    .delete-premium {

        padding: 10px 13px;

        font-size: 7px;

    }


    .close-photo {

        font-size: 8px;

    }

}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap');

/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #000;
}


/* ========================================
   HOME PAGE
======================================== */

.hero-section {
    width: 100%;
    min-height: 100vh;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.10)
        ),
        url("background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    color: white;
}


/* ========================================
   NAVIGATION
======================================== */

nav {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 32px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 10;

    opacity: 0;
    transform: translateY(-30px);
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    letter-spacing: 7px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: white;
    text-decoration: none;

    font-size: 9px;
    letter-spacing: 2px;

    opacity: 0.9;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.5;
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);
}

.small-title,
.hero-content h1,
.line,
.hero-text {
    opacity: 0;
}

.small-title {
    font-size: 10px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(80px, 11vw, 165px);

    font-weight: 400;
    line-height: 0.75;
    letter-spacing: 5px;
}

.line {
    width: 90px;
    height: 1px;

    background: white;
    margin-top: 45px;
}

.hero-text {
    margin-top: 25px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 27px;
    font-style: italic;
}


/* ========================================
   SCROLL TEXT
======================================== */

.scroll-text {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    color: white;
    text-decoration: none;

    font-size: 8px;
    letter-spacing: 3px;

    opacity: 0.8;

    animation: floating 2s ease-in-out infinite;
}


/* ========================================
   HOME ANIMATIONS
======================================== */

.hero-section.animate nav {
    animation: fadeDown 1s ease forwards;
}

.hero-section.animate .small-title {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-section.animate .hero-content h1 {
    animation: titleReveal 1.4s ease forwards;
    animation-delay: 0.6s;
}

.hero-section.animate .line {
    animation: lineGrow 1s ease forwards;
    animation-delay: 1.3s;
}

.hero-section.animate .hero-text {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.5s;
}


/* ========================================
   ABOUT PAGE
======================================== */

.about-frame {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top right,
            #ffffff 0%,
            #f5f3ee 40%,
            #e8e4dc 100%
        );

    color: #171717;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 20px;

    position: relative;
    overflow: hidden;
}

.about-frame::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.8);

    filter: blur(100px);

    top: -250px;
    right: -200px;
}

.about-frame > * {
    position: relative;
    z-index: 1;
}


/* ========================================
   ABOUT ANIMATION
======================================== */

.about-frame .presents,
.about-frame .brand-title,
.about-frame .brand-line,
.about-frame .brand-quote,
.about-frame .credits,
.about-frame .enter-button {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.about-frame.show .presents {
    opacity: 1;
    transform: translateY(0);
}

.about-frame.show .brand-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-frame.show .brand-line {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about-frame.show .brand-quote {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.about-frame.show .credits {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.about-frame.show .enter-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}


/* ========================================
   ABOUT TEXT
======================================== */

.presents {
    font-size: 9px;
    letter-spacing: 6px;

    color: #777;
    margin-bottom: 35px;
}

.brand-title {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(80px, 13vw, 190px);

    font-weight: 400;
    line-height: 0.75;

    letter-spacing: 8px;
}

.brand-line {
    width: 70px;
    height: 1px;

    background: #777;
    margin-top: 55px;
}

.brand-quote {
    margin-top: 30px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 23px;
    font-style: italic;

    line-height: 1.5;
    color: #555;
}


/* ========================================
   PRODUCERS
======================================== */

.credits {
    margin-top: 70px;
}

.credits-title {
    font-size: 9px;
    letter-spacing: 5px;

    color: #777;
    margin-bottom: 25px;
}

.names {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;
}

.names h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 22px;
    font-weight: 500;

    letter-spacing: 3px;
}

.names span {
    color: #777;
    font-size: 14px;
}


/* ========================================
   ENTER ARCHIVE BUTTON
======================================== */

.enter-button {
    margin-top: 70px;

    padding: 16px 28px;

    border: 1px solid #555;

    color: #171717;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;

    transition: 0.3s;
}

.enter-button:hover {
    background: #171717;

    color: white;

    transform: translateY(-4px);
}


/* ========================================
   ARCHIVE PAGE
======================================== */

.archive-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 20%,
            #242424 0%,
            #101010 40%,
            #070707 100%
        );

    color: #f5f2eb;
}

.archive-back {
    position: fixed;

    top: 30px;
    left: 7%;

    z-index: 100;

    color: #888;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;
}

.archive-premium {
    min-height: 100vh;

    padding: 130px 10% 40px;
}

.archive-hero {
    max-width: 900px;
    margin-bottom: 90px;
}

.archive-label {
    font-size: 9px;
    letter-spacing: 6px;

    color: #777;
    margin-bottom: 25px;
}

.archive-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(70px, 10vw, 150px);

    font-weight: 400;

    letter-spacing: 6px;
    line-height: 0.85;
}

.archive-intro {
    margin-top: 35px;

    max-width: 480px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 23px;
    font-style: italic;

    line-height: 1.4;

    color: #999;
}


/* ========================================
   ARCHIVE BUTTONS
======================================== */

.archive-buttons {
    width: 100%;
    border-top: 1px solid #282828;
}

.premium-button {
    min-height: 145px;

    display: grid;

    grid-template-columns: 80px 1fr 60px;

    align-items: center;

    position: relative;
    overflow: hidden;

    text-decoration: none;
    color: #f5f2eb;

    border-bottom: 1px solid #282828;
}

.premium-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #151515,
            #222222
        );

    transform: translateX(-101%);

    transition: 0.65s;
    z-index: 0;
}

.premium-button:hover::before {
    transform: translateX(0);
}

.button-number,
.button-main,
.button-arrow {
    position: relative;
    z-index: 2;
}

.button-number {
    font-size: 10px;
    letter-spacing: 3px;

    color: #777;
}

.button-main h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(42px, 6vw, 85px);

    font-weight: 400;

    letter-spacing: 4px;
    line-height: 0.9;
}

.button-main p {
    margin-top: 14px;

    font-size: 9px;
    letter-spacing: 2px;

    color: #888;
}

.button-arrow {
    text-align: right;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 48px;
    font-weight: 300;

    color: #777;
}

.archive-premium-footer {
    margin-top: 100px;

    padding-top: 30px;

    border-top: 1px solid #282828;

    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 8px;
    letter-spacing: 3px;
}


/* ========================================
   PHOTOGRAPHY PAGE
======================================== */

.photography-page {
    background: #0b0b0b;

    color: white;

    min-height: 100vh;
}


/* BACK TO ARCHIVE */

.back-archive {
    position: fixed;

    top: 30px;
    left: 7%;

    z-index: 100;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #888;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;
}

.back-arrow {
    font-size: 18px;
}


/* ADD PHOTO */

.add-photo-button {
    position: fixed;

    top: 30px;
    right: 7%;

    z-index: 100;

    color: white;

    display: flex;
    align-items: center;

    gap: 8px;

    cursor: pointer;

    font-size: 9px;
    letter-spacing: 2px;
}

.plus-icon {
    font-size: 22px;
}


/* PHOTO HEADER */

.photo-header {
    min-height: 70vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 70px;
}

.photo-small-title {
    font-size: 9px;
    letter-spacing: 5px;

    color: #888;
    margin-bottom: 30px;
}

.photo-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: clamp(70px, 10vw, 160px);

    font-weight: 400;

    line-height: 0.75;
    letter-spacing: 5px;
}

.photo-subtitle {
    margin-top: 45px;

    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 23px;
    font-style: italic;

    color: #aaa;
}

.photo-line {
    width: 70px;
    height: 1px;

    background: #777;
    margin-top: 35px;
}


/* ========================================
   PHOTO GALLERY
======================================== */

.photo-gallery {
    max-width: 1300px;

    margin: auto;

    padding: 40px 7% 100px;

    columns: 3;
    column-gap: 18px;
}

.photo-item {
    width: 100%;

    margin-bottom: 18px;

    break-inside: avoid;

    overflow: hidden;

    cursor: pointer;

    background: #151515;

    position: relative;
}

.photo-item img {
    width: 100%;
    height: auto;

    display: block;

    transition: 0.6s ease;
}

.photo-item:hover img {
    transform: scale(1.04);
}


/* ========================================
   PHOTO FOOTER
======================================== */

.photo-footer {
    border-top: 1px solid #222;

    padding: 35px 7%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    color: #777;

    font-size: 9px;
    letter-spacing: 3px;
}

.photo-footer p {
    font-family: 'Cormorant Garamond', Georgia, serif;

    font-size: 20px;

    color: white;
    letter-spacing: 4px;
}


/* ========================================
   PREMIUM LIGHTBOX
======================================== */

.premium-lightbox {

    display: none;

    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(5, 5, 5, 0.98);

    z-index: 9999;
}

.premium-lightbox.active {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.lightbox-top {

    position: absolute;

    top: 30px;
    left: 7%;
    right: 7%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    z-index: 10;
}

.close-photo {

    background: transparent;
    border: none;

    color: #aaa;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    letter-spacing: 3px;

    cursor: pointer;
}

.delete-premium {

    background: transparent;

    border: 1px solid #b52b2b;

    color: #e34b4b;

    padding: 13px 20px;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    letter-spacing: 2px;

    cursor: pointer;
}

.lightbox-image-container {

    width: 90%;
    height: 85vh;

    display: flex;

    align-items: center;
    justify-content: center;
}

#fullscreen-photo {

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}


/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes lineGrow {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 90px;
        opacity: 1;
    }

}

@keyframes floating {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0);

    }

    50% {

        transform:
            translateX(-50%)
            translateY(-8px);

    }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .photo-gallery {
        columns: 2;
    }

}


/* ========================================
   MOBILE DESIGN
======================================== */

@media (max-width: 700px) {


    /* ====================================
       GENERAL
    ==================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* ====================================
       HOME PAGE - MOBILE FIX
    ==================================== */

    .hero-section {

        width: 100%;

        min-height: 100svh;

        background-size: cover;

        background-position: center;

    }


    nav {

        width: 100%;

        padding: 25px 20px;

    }


    .logo-text {

        font-size: 24px;

        letter-spacing: 3px;

    }


    .nav-links {

        display: none;

    }


    .hero-content {

        position: absolute;

        top: 50%;

        left: 20px;

        width: calc(100% - 40px);

        transform: translateY(-50%);

    }


    .small-title {

        font-size: 9px;

        letter-spacing: 3px;

        margin-bottom: 20px;

    }


    .hero-content h1 {

        font-size: clamp(70px, 20vw, 95px);

        line-height: 0.8;

        letter-spacing: 2px;

    }


    .line {

        width: 70px;

        margin-top: 35px;

    }


    .hero-text {

        margin-top: 20px;

        font-size: 23px;

    }


    .scroll-text {

        width: 100%;

        left: 0;

        transform: none;

        text-align: center;

        font-size: 8px;

        white-space: nowrap;

    }


    /* ====================================
       ABOUT PAGE
    ==================================== */

    .about-frame {

        min-height: 100svh;

        padding: 70px 20px;

    }


    .brand-title {

        font-size: 75px;

        letter-spacing: 4px;

    }


    .brand-quote {

        font-size: 19px;

    }


    .names {

        flex-direction: column;

        gap: 15px;

    }


    .names h3 {

        font-size: 18px;

        letter-spacing: 2px;

    }


    /* ====================================
       ARCHIVE
    ==================================== */

    .archive-premium {

        padding: 120px 7% 40px;

    }


    .archive-hero {

        margin-bottom: 70px;

    }


    .archive-hero h1 {

        font-size: 65px;

        letter-spacing: 3px;

    }


    .archive-intro {

        font-size: 19px;

    }


    .premium-button {

        min-height: 120px;

        grid-template-columns:
            45px
            1fr
            35px;

    }


    .button-main h2 {

        font-size: 40px;

        letter-spacing: 2px;

    }


    .button-main p {

        font-size: 8px;

        line-height: 1.5;

        margin-top: 10px;

    }


    .button-arrow {

        font-size: 32px;

    }


    .archive-premium-footer {

        margin-top: 70px;

        font-size: 7px;

    }


    /* ====================================
       PHOTOGRAPHY
    ==================================== */

    .photo-header {

        min-height: 65svh;

        padding: 100px 20px 50px;

    }


    .photo-header h1 {

        font-size: 70px;

        letter-spacing: 3px;

    }


    .photo-subtitle {

        font-size: 19px;

    }


    .photo-gallery {

        width: 100%;

        columns: 1;

        padding: 20px 15px 80px;

    }


    .photo-item {

        width: 100%;

    }


    .photo-item img {

        width: 100%;

        height: auto;

    }


    .back-archive {

        top: 25px;

        left: 5%;

        font-size: 8px;

    }


    .add-photo-button {

        top: 25px;

        right: 5%;

        font-size: 8px;

    }


    .photo-footer {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }


    /* ====================================
       LIGHTBOX
    ==================================== */

    .lightbox-top {

        top: 20px;

        left: 5%;
        right: 5%;

    }


    .lightbox-image-container {

        width: 95%;

        height: 80vh;

    }


    .delete-premium {

        padding: 10px 13px;

        font-size: 7px;

    }


    .close-photo {

        font-size: 8px;

    }

}
@media (max-width: 700px) {

    .scroll-text {
        left: 50%;
        width: auto;
        transform: translateX(-50%);
    }

    @keyframes floating {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-8px);
        }
    }

}
/* ========================================
   HOME PAGE MOBILE FIX
======================================== */

@media (max-width: 700px) {

    .hero-section {
        width: 100vw;
        min-height: 100svh;
        overflow: hidden;

        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        left: 8%;
        right: 8%;
        width: auto;
        max-width: 84%;
    }

}
/* ========================================
   MOBILE NAVIGATION FIX
======================================== */

@media (max-width: 700px) {

    .nav-links {
        display: flex;
        gap: 12px;
    }

    .nav-links a {
        font-size: 7px;
        letter-spacing: 1px;
    }

    nav {
        padding: 25px 15px;
    }

    .logo-text {
        font-size: 17px;
        letter-spacing: 2px;
    }

}
/* ========================================
   PREMIUM ADMIN LOGIN
======================================== */

.admin-page {
    min-height: 100vh;
    min-height: 100svh;

    background:
        radial-gradient(
            circle at 80% 20%,
            #252525 0%,
            #101010 45%,
            #050505 100%
        );

    color: #f5f2eb;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    position: relative;
    overflow: hidden;
}


/* SOFT CINEMATIC LIGHT */

.admin-page::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    filter: blur(100px);

    top: -250px;
    right: -250px;

}


/* ADMIN CONTAINER */

.admin-container {

    width: 100%;
    max-width: 480px;

    position: relative;
    z-index: 2;

    padding: 65px 55px;

    background: rgba(20, 20, 20, 0.55);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(15px);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5);
}


/* SMALL TITLE */

.admin-small-title {

    font-size: 9px;

    letter-spacing: 6px;

    color: #777;

    margin-bottom: 30px;

}


/* ADMIN TITLE */

.admin-container h1 {

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 400;

    line-height: 0.78;

    letter-spacing: 4px;

}


/* LINE */

.admin-line {

    width: 70px;
    height: 1px;

    background: #777;

    margin: 40px 0 25px;

}


/* DESCRIPTION */

.admin-description {

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 20px;

    font-style: italic;

    color: #999;

    margin-bottom: 40px;

}


/* INPUT FIELDS */

.admin-container input {

    width: 100%;

    background: transparent;

    border: none;

    border-bottom:
        1px solid #444;

    padding: 16px 0;

    margin-bottom: 22px;

    color: white;

    outline: none;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;

}


.admin-container input:focus {

    border-bottom-color: white;

}


/* PLACEHOLDER */

.admin-container input::placeholder {

    color: #666;

}


/* LOGIN BUTTON */

#login-button {

    width: 100%;

    margin-top: 15px;

    padding: 18px;

    background: #f1eee7;

    border: none;

    color: #111;

    cursor: pointer;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    transition: 0.35s;

}


#login-button:hover {

    background: white;

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(255, 255, 255, 0.08);

}


/* LOGIN MESSAGE */

#login-message {

    min-height: 25px;

    margin-top: 20px;

    text-align: center;

    color: #999;

    font-size: 8px;

    letter-spacing: 2px;

}


/* BACK BUTTON */

.admin-back {

    display: block;

    margin-top: 35px;

    text-align: center;

    color: #666;

    text-decoration: none;

    font-size: 8px;

    letter-spacing: 3px;

    transition: 0.3s;

}


.admin-back:hover {

    color: white;

}


/* ========================================
   PREMIUM ADMIN MOBILE
======================================== */

@media (max-width: 700px) {

    .admin-page {

        padding: 20px;

    }


    .admin-container {

        padding: 50px 28px;

    }


    .admin-container h1 {

        font-size: 60px;

    }


    .admin-description {

        font-size: 18px;

    }

}
/* ========================================
   ARCHIVE PAGE MOBILE FULL SCREEN FIX
======================================== */

@media (max-width: 700px) {

    .archive-page {
        width: 100%;
        min-height: 100svh;
        overflow-x: hidden;
    }

    .archive-premium {
        width: 100%;
        max-width: 100%;
        padding: 110px 20px 40px;
    }

    .archive-hero {
        width: 100%;
        max-width: 100%;
    }

    .archive-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(55px, 18vw, 75px);
        line-height: 0.85;
        overflow-wrap: break-word;
    }

    .archive-intro {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
    }

    .archive-buttons {
        width: 100%;
        max-width: 100%;
    }

    .premium-button {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 40px minmax(0, 1fr) 30px;

        padding: 0;
    }

    .button-main {
        min-width: 0;
    }

    .button-main h2 {
        font-size: clamp(32px, 10vw, 45px);
        letter-spacing: 1px;
        word-break: break-word;
    }

    .button-main p {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .button-arrow {
        font-size: 28px;
    }

    .archive-premium-footer {
        width: 100%;
        max-width: 100%;

        flex-direction: column;
        gap: 15px;

        text-align: left;
    }

}
/* ========================================
   FILMS PAGE
======================================== */

.films-page {
    background: #0b0b0b;
    color: white;
    min-height: 100vh;
}


/* ========================================
   FILM GALLERY
======================================== */

.film-gallery {

    max-width: 1300px;

    margin: auto;

    padding: 40px 7% 100px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}


.film-item {

    width: 100%;

    background: #151515;

    overflow: hidden;

    position: relative;

}


.film-item video {

    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    display: block;

}


/* ========================================
   FULLSCREEN FILM
======================================== */

#fullscreen-film {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}


/* ========================================
   MOBILE FILMS
======================================== */

@media (max-width: 700px) {

    .film-gallery {

        width: 100%;

        grid-template-columns: 1fr;

        padding: 20px 15px 80px;

        gap: 15px;

    }

}
/* ========================================
   REELS PAGE
======================================== */

.reels-page {
    background: #0b0b0b;
    color: white;
    min-height: 100vh;
}


/* ADD REEL BUTTON */

#add-reel-button {
    background: transparent;
    border: none;
}


/* ========================================
   REEL GALLERY
======================================== */

.reel-gallery {

    max-width: 1200px;

    margin: auto;

    padding: 40px 7% 100px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.reel-item {

    position: relative;

    width: 100%;

    background: #151515;

    overflow: hidden;

    aspect-ratio: 9 / 16;

}


.reel-item iframe {

    width: 100%;

    height: 100%;

    border: none;

}


/* DELETE BUTTON */

.delete-reel {

    position: absolute;

    bottom: 12px;
    right: 12px;

    padding: 8px 12px;

    background: rgba(0, 0, 0, 0.8);

    border: 1px solid #e34b4b;

    color: #e34b4b;

    font-size: 7px;

    letter-spacing: 1px;

    cursor: pointer;

}


/* ========================================
   REEL POPUP
======================================== */

.reel-popup {

    display: none;

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: rgba(0, 0, 0, 0.92);

    align-items: center;
    justify-content: center;

}


.reel-popup.active {

    display: flex;

}


.reel-popup-box {

    width: min(90%, 450px);

    background: #111;

    border: 1px solid #333;

    padding: 50px 35px;

    position: relative;

}


.close-reel-popup {

    position: absolute;

    top: 15px;
    right: 18px;

    background: transparent;

    border: none;

    color: #aaa;

    font-size: 18px;

    cursor: pointer;

}


.reel-popup-title {

    font-size: 10px;

    letter-spacing: 3px;

    color: white;

    margin-bottom: 30px;

}


#reel-link {

    width: 100%;

    padding: 15px;

    background: transparent;

    border: 1px solid #444;

    color: white;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    outline: none;

}


#reel-link:focus {

    border-color: #888;

}


#save-reel-button {

    width: 100%;

    margin-top: 15px;

    padding: 15px;

    background: white;

    border: none;

    color: black;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;

    letter-spacing: 2px;

    cursor: pointer;

}


/* ========================================
   MOBILE REELS
======================================== */

@media (max-width: 700px) {

    .reel-gallery {

        grid-template-columns: 1fr;

        padding: 20px 15px 80px;

        gap: 15px;

    }


    .reel-popup-box {

        padding: 45px 25px;

    }

}
/* ========================================
   PREMIUM REELS PAGE
======================================== */

.reels-page {
    background:
        radial-gradient(
            circle at 80% 10%,
            #242424 0%,
            #101010 45%,
            #050505 100%
        );

    color: white;
    min-height: 100vh;
}


/* ========================================
   PREMIUM ADD BUTTON
======================================== */

.add-reel-premium {

    position: fixed;

    top: 30px;
    right: 7%;

    z-index: 100;

    display: flex;
    align-items: center;

    gap: 10px;

    background: transparent;

    border: 1px solid #333;

    color: white;

    padding: 12px 18px;

    font-family: 'Montserrat', sans-serif;

    font-size: 8px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;

}


.add-reel-premium:hover {

    background: white;

    color: black;

}


.add-reel-premium .plus-icon {

    font-size: 18px;

}


/* ========================================
   REELS HEADER
======================================== */

.reels-header {

    min-height: 85vh;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 130px 20px 80px;

}


.reels-small-title {

    font-size: 9px;

    letter-spacing: 6px;

    color: #777;

    margin-bottom: 35px;

}


.reels-header h1 {

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size:
        clamp(75px, 11vw, 170px);

    font-weight: 400;

    line-height: 0.75;

    letter-spacing: 6px;

}


.reels-subtitle {

    margin-top: 45px;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 25px;

    font-style: italic;

    color: #aaa;

}


.reels-line {

    width: 70px;

    height: 1px;

    background: #777;

    margin-top: 35px;

}


.reels-description {

    max-width: 450px;

    margin-top: 30px;

    font-size: 9px;

    letter-spacing: 2px;

    line-height: 2;

    color: #666;

}


/* ========================================
   REEL GALLERY
======================================== */

.reel-gallery {

    max-width: 1300px;

    margin: auto;

    padding: 20px 7% 120px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* ========================================
   REEL CARD
======================================== */

.reel-item {

    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    background: #111;

    border: 1px solid #222;

    overflow: hidden;

    transition:
        transform 0.5s ease,
        border 0.5s ease;

}


.reel-item:hover {

    transform: translateY(-10px);

    border-color: #555;

}


.reel-item iframe {

    width: 100%;

    height: 100%;

    border: none;

}


/* ========================================
   REEL DELETE BUTTON
======================================== */

.delete-reel {

    position: absolute;

    bottom: 15px;
    right: 15px;

    padding: 9px 14px;

    background: rgba(0, 0, 0, 0.85);

    border: 1px solid #7a2222;

    color: #d66;

    font-family: 'Montserrat', sans-serif;

    font-size: 7px;

    letter-spacing: 2px;

    cursor: pointer;

    opacity: 0;

    transition: 0.3s;

}


.reel-item:hover .delete-reel {

    opacity: 1;

}


/* ========================================
   PREMIUM REEL POPUP
======================================== */

.reel-popup {

    display: none;

    position: fixed;

    inset: 0;

    z-index: 9999;

    background:
        rgba(0, 0, 0, 0.92);

    backdrop-filter:
        blur(8px);

    align-items: center;

    justify-content: center;

}


.reel-popup.active {

    display: flex;

}


.reel-popup-box {

    width: min(90%, 500px);

    background:
        linear-gradient(
            145deg,
            #181818,
            #090909
        );

    border: 1px solid #333;

    padding: 65px 50px;

    position: relative;

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, 0.7);

}


.close-reel-popup {

    position: absolute;

    top: 20px;
    right: 25px;

    background: transparent;

    border: none;

    color: #777;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;

}


.close-reel-popup:hover {

    color: white;

}


.popup-small-title {

    font-size: 8px;

    letter-spacing: 5px;

    color: #777;

    margin-bottom: 25px;

}


.reel-popup-box h2 {

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 65px;

    font-weight: 400;

    line-height: 0.75;

    letter-spacing: 4px;

}


.popup-line {

    width: 55px;

    height: 1px;

    background: #666;

    margin-top: 35px;

}


.popup-description {

    margin-top: 25px;

    margin-bottom: 30px;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 1px;

    color: #777;

}


#reel-link {

    width: 100%;

    padding: 16px;

    background: #0a0a0a;

    border: 1px solid #333;

    color: white;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    outline: none;

}


#reel-link:focus {

    border-color: #777;

}


#save-reel-button {

    width: 100%;

    margin-top: 15px;

    padding: 16px;

    background: white;

    border: none;

    color: black;

    font-family: 'Montserrat', sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;

}


#save-reel-button:hover {

    background: #ccc;

}


/* ========================================
   MOBILE REELS
======================================== */

@media (max-width: 700px) {


    .add-reel-premium {

        top: 20px;

        right: 5%;

        padding: 10px 12px;

        font-size: 7px;

    }


    .reels-header {

        min-height: 75svh;

        padding:
            110px
            20px
            60px;

    }


    .reels-header h1 {

        font-size: 70px;

        letter-spacing: 3px;

    }


    .reels-subtitle {

        font-size: 20px;

    }


    .reels-description {

        font-size: 8px;

        max-width: 280px;

    }


    .reel-gallery {

        grid-template-columns:
            1fr;

        padding:
            20px
            15px
            80px;

        gap: 20px;

    }


    .reel-item {

        max-width: 360px;

        margin: auto;

    }


    .reel-popup-box {

        padding:
            55px
            25px;

    }


    .reel-popup-box h2 {

        font-size: 55px;

    }


    /* SHOW DELETE BUTTON ON MOBILE */

    .delete-reel {

        opacity: 1;

    }

}
/* FORCE PREMIUM REELS */

.reels-page {
    background: radial-gradient(circle at 80% 10%, #242424, #101010 45%, #050505) !important;
}

.reels-header {
    min-height: 85vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 130px 20px 80px !important;
}

.reels-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(75px, 11vw, 170px) !important;
    font-weight: 400 !important;
    line-height: 0.75 !important;
    letter-spacing: 6px !important;
    color: white !important;
}

.reels-small-title {
    font-size: 9px !important;
    letter-spacing: 6px !important;
    color: #777 !important;
    margin-bottom: 35px !important;
}

.reels-subtitle {
    margin-top: 45px !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 25px !important;
    font-style: italic !important;
    color: #aaa !important;
}

.reels-line {
    width: 70px !important;
    height: 1px !important;
    background: #777 !important;
    margin-top: 35px !important;
}

.reels-description {
    max-width: 450px !important;
    margin-top: 30px !important;
    font-size: 9px !important;
    letter-spacing: 2px !important;
    line-height: 2 !important;
    color: #666 !important;
}

.add-reel-premium {
    position: fixed !important;
    top: 30px !important;
    right: 7% !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: transparent !important;
    border: 1px solid #333 !important;
    color: white !important;
    padding: 12px 18px !important;
}

.reel-gallery {
    max-width: 1300px !important;
    margin: auto !important;
    padding: 20px 7% 120px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
}

.reel-item {
    aspect-ratio: 9 / 16 !important;
    background: #111 !important;
    border: 1px solid #222 !important;
}

@media (max-width: 700px) {

    .reels-header {
        min-height: 75svh !important;
        padding: 110px 20px 60px !important;
    }

    .reels-header h1 {
        font-size: 70px !important;
        letter-spacing: 3px !important;
    }

    .reel-gallery {
        grid-template-columns: 1fr !important;
        padding: 20px 15px 80px !important;
    }

}
/* ========================================
   REELS ADMIN CONTROL
======================================== */

#add-reel-button {
    display: none !important;
}

#add-reel-button.admin-visible {
    display: flex !important;
}
/* ========================================
   PREMIUM ADMIN DASHBOARD — FULL SIZE
======================================== */

.dashboard-page {
    min-height: 100vh;
    width: 100%;
    background:
        radial-gradient(
            circle at 80% 10%,
            #252525 0%,
            #101010 45%,
            #050505 100%
        );
    color: #f5f2eb;
}


.dashboard-wrapper {

    width: 100%;
    min-height: 100vh;

    max-width: none;

    margin: 0;

    padding: 80px 7% 50px;

}


/* ========================================
   TOP
======================================== */

.dashboard-top {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}


.dashboard-page .admin-small-title {

    font-size: 10px;

    letter-spacing: 6px;

    color: #888;

    margin-bottom: 30px;

}


.dashboard-page h1 {

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size:
        clamp(
            85px,
            12vw,
            180px
        );

    font-weight: 400;

    line-height: 0.72;

    letter-spacing: 6px;

}


/* ========================================
   LINE
======================================== */

.dashboard-page .admin-line {

    width: 100px;

    height: 1px;

    background: #777;

    margin-top: 60px;

}


/* ========================================
   DESCRIPTION
======================================== */

.dashboard-description {

    max-width: 600px;

    margin-top: 30px;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 28px;

    font-style: italic;

    line-height: 1.4;

    color: #999;

}


/* ========================================
   LOGOUT
======================================== */

.premium-logout {

    background: transparent;

    border: 1px solid #444;

    color: #aaa;

    padding: 16px 24px;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;

}


.premium-logout:hover {

    background: #f5f2eb;

    color: #111;

    border-color: #f5f2eb;

}


/* ========================================
   MENU
======================================== */

.dashboard-menu {

    width: 100%;

    margin-top: 100px;

    border-top: 1px solid #333;

}


/* ========================================
   DASHBOARD CARDS
======================================== */

.dashboard-card {

    width: 100%;

    min-height: 200px;

    display: grid;

    grid-template-columns:
        100px
        1fr
        100px;

    align-items: center;

    position: relative;

    overflow: hidden;

    text-decoration: none;

    color: #f5f2eb;

    border-bottom: 1px solid #333;

}


/* HOVER */

.dashboard-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #171717,
            #222
        );

    transform: translateX(-101%);

    transition: 0.6s ease;

}


.dashboard-card:hover::before {

    transform: translateX(0);

}


/* CONTENT */

.dashboard-number,
.dashboard-card-content,
.dashboard-arrow {

    position: relative;

    z-index: 2;

}


/* NUMBER */

.dashboard-number {

    font-size: 11px;

    letter-spacing: 4px;

    color: #777;

}


/* LABEL */

.dashboard-label {

    font-size: 9px;

    letter-spacing: 5px;

    color: #777;

    margin-bottom: 18px;

}


/* TITLE */

.dashboard-card h2 {

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size:
        clamp(
            55px,
            7vw,
            105px
        );

    font-weight: 400;

    letter-spacing: 5px;

    line-height: 0.85;

}


/* DESCRIPTION */

.dashboard-text {

    margin-top: 20px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #999;

}


/* ARROW */

.dashboard-arrow {

    text-align: right;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 65px;

    color: #777;

    transition: 0.4s;

}


.dashboard-card:hover .dashboard-arrow {

    transform: translateX(15px);

    color: white;

}


/* ========================================
   FOOTER
======================================== */

.dashboard-footer {

    margin-top: 100px;

    padding-top: 35px;

    border-top: 1px solid #333;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 9px;

    letter-spacing: 3px;

}


/* ========================================
   BACK BUTTON
======================================== */

.dashboard-back {

    display: inline-block;

    margin-top: 35px;

    color: #888;

}


/* ========================================
   MOBILE — FULL SIZE
======================================== */

@media (max-width: 700px) {


    .dashboard-wrapper {

        width: 100%;

        min-height: 100svh;

        padding: 70px 20px 45px;

    }


    .dashboard-top {

        width: 100%;

        gap: 15px;

    }


    .dashboard-page h1 {

        font-size: clamp(65px, 19vw, 100px);

        line-height: 0.75;

        letter-spacing: 2px;

    }


    .dashboard-page .admin-small-title {

        font-size: 8px;

        letter-spacing: 4px;

        margin-bottom: 22px;

    }


    .premium-logout {

        padding: 11px 12px;

        font-size: 7px;

        letter-spacing: 1px;

        white-space: nowrap;

    }


    .dashboard-page .admin-line {

        width: 70px;

        margin-top: 45px;

    }


    .dashboard-description {

        max-width: 100%;

        margin-top: 25px;

        font-size: 22px;

        line-height: 1.4;

    }


    /* MENU */

    .dashboard-menu {

        width: 100%;

        margin-top: 65px;

    }


    /* CARDS */

    .dashboard-card {

        width: 100%;

        min-height: 155px;

        grid-template-columns:
            45px
            1fr
            35px;

    }


    .dashboard-number {

        font-size: 9px;

        letter-spacing: 2px;

    }


    .dashboard-label {

        font-size: 7px;

        letter-spacing: 2px;

        margin-bottom: 12px;

    }


    .dashboard-card h2 {

        font-size: clamp(42px, 12vw, 65px);

        letter-spacing: 2px;

        line-height: 0.85;

    }


    .dashboard-text {

        margin-top: 13px;

        font-size: 8px;

        letter-spacing: 1px;

        line-height: 1.5;

    }


    .dashboard-arrow {

        font-size: 40px;

    }


    /* FOOTER */

    .dashboard-footer {

        margin-top: 70px;

        padding-top: 25px;

        font-size: 7px;

        letter-spacing: 1px;

    }


    .dashboard-back {

        margin-top: 30px;

        font-size: 8px;

    }

}
/* ========================================
   FORCE DASHBOARD FULL SIZE ON MOBILE
======================================== */

@media (max-width: 700px) {

    body.dashboard-page {
        width: 100vw !important;
        min-height: 100svh !important;
        overflow-x: hidden !important;
    }

    .dashboard-wrapper {
        width: 100vw !important;
        max-width: none !important;

        min-height: 100svh !important;

        margin: 0 !important;

        padding: 70px 20px 50px !important;

        transform: none !important;
        zoom: 1 !important;
    }


    /* MAKE TOP SECTION FULL WIDTH */

    .dashboard-top {
        width: 100% !important;

        display: flex !important;

        justify-content: space-between !important;

        align-items: flex-start !important;
    }


    /* BIG TITLE */

    .dashboard-page h1 {
        font-size: 82px !important;

        line-height: 0.78 !important;

        letter-spacing: 2px !important;

        transform: none !important;
    }


    /* DESCRIPTION */

    .dashboard-description {
        width: 100% !important;

        max-width: 100% !important;

        font-size: 23px !important;
    }


    /* FULL WIDTH MENU */

    .dashboard-menu {
        width: 100% !important;

        margin-top: 65px !important;
    }


    /* BIG BUTTONS */

    .dashboard-card {
        width: 100% !important;

        min-height: 165px !important;

        grid-template-columns: 45px 1fr 35px !important;
    }


    .dashboard-card h2 {
        font-size: 52px !important;

        line-height: 0.85 !important;

        letter-spacing: 1px !important;
    }


    .dashboard-text {
        font-size: 8px !important;

        line-height: 1.6 !important;
    }


    .dashboard-arrow {
        font-size: 42px !important;
    }


    /* FOOTER */

    .dashboard-footer {
        width: 100% !important;

        font-size: 7px !important;
    }

}