/* ================================
   Deanna Miranda Photography
   Moody Editorial Portfolio Style
================================ */

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

:root {
    --black: #080609;
    --charcoal: #141118;
    --deep-purple: #24162f;
    --amethyst: #6f4a8e;
    --soft-amethyst: #b99bd6;
    --mist: #d8d1dc;
    --warm-white: #f4efe9;
    --muted-gray: #9c96a3;
}

body {
    background: var(--black);
    color: var(--warm-white);
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ================================
   Navigation
================================ */

.navigation-text {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 6, 9, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(185, 155, 214, 0.18);
}

.navigation-text ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
}

.navigation-text a {
    color: var(--mist);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.16rem;
    transition: all 0.3s ease;
}

.navigation-text a:hover {
    color: var(--soft-amethyst);
    text-shadow: 0 0 12px rgba(185, 155, 214, 0.65);
}

/* ================================
   Header / Logo
================================ */

header {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background:
        linear-gradient(rgba(8, 6, 9, 0.4), rgba(8, 6, 9, 0.95)),
        radial-gradient(circle at center, rgba(111, 74, 142, 0.45), transparent 55%);
}

/* ================================
   Cinematic Hero
================================ */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(8, 6, 9, 0.35), rgba(8, 6, 9, 0.95)),
        url("../Images/Storms/distantstorm.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(111, 74, 142, 0.28), transparent 45%),
        linear-gradient(to bottom, rgba(8, 6, 9, 0.15), rgba(8, 6, 9, 1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    animation: fadeUp 1.4s ease forwards;
}

.hero-logo {
    width: min(620px, 88%);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 28px rgba(185, 155, 214, 0.45));
}

.hero-kicker {
    color: var(--soft-amethyst);
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.78rem;
    margin: 0 auto 1.2rem;
}

.hero h1 {
    font-size: clamp(3.3rem, 8vw, 7.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.85);
}

.hero-text {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: var(--mist);
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--soft-amethyst);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--warm-white);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(185, 155, 214, 0.7);
    color: var(--warm-white);
}

.btn-secondary:hover {
    background: rgba(185, 155, 214, 0.16);
    color: var(--soft-amethyst);
    transform: translateY(-3px);
}

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

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

.portfolio-column {
    padding: 1.5rem;
}

/* ================================
   Typography
================================ */

h1,
h2,
h3 {
    font-family: "Cardo", serif;
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.7rem, 7vw, 6rem);
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 1.25rem;
}

p {
    color: var(--mist);
    font-size: 1rem;
    max-width: 650px;
}

section {
    padding: 6rem 1.5rem;
}

/* ================================
   About Section
================================ */

.About {
    background:
        linear-gradient(135deg, rgba(36, 22, 47, 0.9), rgba(8, 6, 9, 1));
    border-top: 1px solid rgba(185, 155, 214, 0.12);
    border-bottom: 1px solid rgba(185, 155, 214, 0.12);
}

.bio-list,
.Experience-list {
    list-style: none;
    color: var(--soft-amethyst);
    letter-spacing: 0.06rem;
    font-size: 0.95rem;
}

.bio-list li,
.Experience-list li {
    margin-bottom: 0.75rem;
}

.intro-img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
    filter: contrast(1.08) saturate(0.85);
}

/* ================================
   Experience Section
================================ */

.project-amethyst {
    background:
        linear-gradient(135deg, var(--deep-purple), var(--charcoal));
    position: relative;
}

.project-amethyst::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(185, 155, 214, 0.12), transparent 40%);
    pointer-events: none;
}

.project-amethyst > * {
    position: relative;
    z-index: 1;
}

#Experience {
    text-align: center;
}

#Experience .Experience-list {
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   Portfolio Sections
================================ */

.project {
    background:
        linear-gradient(135deg, #080609, #17121d);
}

.row {
    align-items: center;
}

figure {
    position: relative;
    overflow: hidden;
}

figure img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 620px;
    filter: grayscale(12%) contrast(1.12) brightness(0.82);
    transition: transform 0.7s ease, filter 0.7s ease;
}

figure:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.18) brightness(0.95);
}

figcaption {
    font-family: "Homemade Apple", cursive;
    color: var(--soft-amethyst);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    opacity: 0.85;
}

.right-alignment {
    text-align: right;
}

.left-alignment {
    text-align: left;
}

.main-image {
    text-align: center;
}

.event-image {
    filter: grayscale(25%) contrast(1.15) brightness(0.78);
}

/* ================================
   Footer
================================ */

footer {
    background: #050406;
    text-align: center;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(185, 155, 214, 0.18);
}

footer p {
    margin: 0.4rem auto;
    color: var(--muted-gray);
    font-size: 0.9rem;
}

footer a {
    color: var(--soft-amethyst);
    text-decoration: none;
}

footer a:hover {
    color: var(--warm-white);
}

/* ================================
   Cinematic Details
================================ */

::selection {
    background: var(--amethyst);
    color: var(--warm-white);
}

.project p,
.project-amethyst p {
    border-left: 1px solid rgba(185, 155, 214, 0.35);
    padding-left: 1.5rem;
}

/* ================================
   Mobile
================================ */

@media (max-width: 768px) {
    .navigation-text ul {
        gap: 0.9rem;
    }

    .navigation-text a {
        font-size: 0.68rem;
        letter-spacing: 0.1rem;
    }

    header {
        min-height: 40vh;
        padding: 3rem 1rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .portfolio-column {
    padding: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    p {
        font-size: 0.95rem;
    }

    .right-alignment,
    .left-alignment {
        text-align: center;
    }

    figcaption {
        text-align: center;
    }

    .project p,
    .project-amethyst p {
        border-left: none;
        padding-left: 0;
    }
}

/* ================================
   Gallery
================================ */


.gallery-section {
    padding: 6rem 1.5rem;
    background: var(--black);
}

.gallery-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;

    filter:
        brightness(0.85)
        contrast(1.08)
        saturate(0.9);

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.gallery-img:hover {
    transform: scale(1.02);

    filter:
        brightness(1)
        contrast(1.15)
        saturate(1);
}

.Gallery_Nature figure,
.Gallery_Nature img {
    max-width: 100%;
}

.Gallery_Images {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    position: relative;
}

/* ================================
   Gallery Desktop Polish
================================ */

.Gallery_Nature {
    padding: 6rem 2rem;
    background: var(--black);
}

.Gallery_Nature .container {
    max-width: 1400px;
}

.Gallery_Nature .row {
    row-gap: 2.5rem;
}

.Gallery_Nature .col-12 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.Gallery_Images {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    filter: brightness(0.86) contrast(1.08) saturate(0.9);
    transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.Gallery_Images:hover {
    transform: translateY(-6px);
    filter: brightness(1) contrast(1.14) saturate(1);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.65);
}

/* Tablet */
@media (max-width: 991px) {
    .Gallery_Images {
        height: auto;
    }
}

/* Phone */
@media (max-width: 576px) {
    .Gallery_Nature {
        padding: 4rem 1rem;
    }

    .Gallery_Images {
        height: auto;
    }
}

/* ================================
   Gallery Mobile Polish 
================================ */

.Gallery_Images {
    width: 100%;
    height: auto;
    display: block;

    filter:
        brightness(0.9)
        contrast(1.05)
        saturate(0.92);

    transition:
        transform 0.45s ease,
        filter 0.45s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);
}

.Gallery_Images:hover {
    transform: scale(1.01);

    filter:
        brightness(1)
        contrast(1.12)
        saturate(1);
}

/* ================================
   Shop Page
================================ */

.shop-hero {
    position: relative;
    min-height: 90vh;

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

    padding: 4rem 1.5rem;
    text-align: center;

    background:
        linear-gradient(rgba(8,6,9,0.45), rgba(8,6,9,0.92)),
        url("../Images/Storms/distantstorm.jpg")
        center/cover no-repeat;

    overflow: hidden;
}

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

    background:
        radial-gradient(circle at center,
        rgba(111,74,142,0.22),
        transparent 50%);

    z-index: 1;
}

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

    max-width: 850px;
}

.shop-kicker {
    color: var(--soft-amethyst);

    text-transform: uppercase;
    letter-spacing: 0.22rem;

    font-size: 0.78rem;

    margin-bottom: 1.5rem;
}

.shop-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);

    margin-bottom: 1.5rem;

    text-shadow: 0 10px 30px rgba(0,0,0,0.75);
}

.shop-description {
    max-width: 650px;

    margin: 0 auto 3rem;

    color: var(--mist);

    font-size: 1.05rem;
}

.shop-buttons {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 1.25rem;
}

.shop-button {
    width: min(320px, 90%);

    padding: 1rem 1.5rem;

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

    border: 1px solid rgba(185,155,214,0.35);

    color: var(--warm-white);

    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.14rem;

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

.shop-button:hover {
    transform: translateY(-4px);

    background: rgba(185,155,214,0.12);

    border-color: var(--soft-amethyst);

    color: var(--soft-amethyst);
}

.shop-description {
    max-width: 650px;
    margin: 0 auto 3rem;
}

.shop-description {
    text-align: center;
}

/* ================================
   Responsive Masonry Gallery
================================ */

.Gallery_Nature .row {
    display: block;
    column-count: 3;
    column-gap: 1.5rem;
}

.Gallery_Nature .col-12 {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 0;
    break-inside: avoid;
}

.Gallery_Images {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    filter: brightness(0.9) contrast(1.08) saturate(0.92);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.Gallery_Images:hover {
    transform: scale(1.015);
    filter: brightness(1) contrast(1.14) saturate(1);
}

/* Tablet */
@media (max-width: 991px) {
    .Gallery_Nature .row {
        column-count: 2;
    }
}

/* Phone */
@media (max-width: 576px) {
    .Gallery_Nature .row {
        column-count: 1;
    }
}