/**
* CSS file to hold styles that apply across the application
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Montserrat:wght@200;400;600;800&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

div#main {
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
}

    section.dark {
        min-height: 100vh;
        /*color: white;*/
        /*color: rgba(12, 158, 178,0.7);*/
        background: rgba(0, 0, 0, 0.25);
    }

section.light {
  color: black;
  /*background: rgba(255, 255, 255, 0.35);*/
  background: src(/images/artDecoBackground1.png);
  padding: 8rem 0;
}

section img.background {
  width: 100vmax;
  height: 150%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
  object-fit: cover;
}

h1 {
    font-weight: 300;
    /*font-family: "Cormorant Garamond", serif;*/
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 7rem;
    margin: 0;
}

@media screen and (max-width: 300px) {
  h1 {
    font-weight: 300;
    font-size: 3rem;
    margin: 0;
  }
}

@media screen and (min-width: 301px) and (max-width: 360px) {
  h1 {
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    margin: 0;
  }
}

@media screen and (min-width: 361px) and (max-width: 420px) {
  h1 {
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    margin: 0;
  }
}

h2 {
  font-weight: 400;
  font-size: 2rem;
  margin: 0;
  text-align: center;
}

h3 {
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0;
}

p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 300;
}

p.large {
  font-size: 24px;
}

p.small {
  font-size: 15px;
}

hr {
  margin: 2.5rem;
}

li {
  line-height: 1.7;
}

li::marker {
  color: #4e567e;
}

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

a:hover {
  color: #4e567e;
}

.portfolio-container {
  display: flex;
  flex-direction: row;
  padding-top: 3rem;
}

@media screen and (max-width: 420px) {
  .portfolio-container {
    flex-direction: column;
  }
}

.portfolio-hero {
  max-width: 40%;
  align-self: center;
}

@media screen and (max-width: 420px) {
  .portfolio-hero {
    max-width: 100%;
    align-self: center;
  }
}

.container {
  margin: 20px auto;
  display: grid;
  grid-template-columns: 330px 300px;
  grid-gap: 20px;
}

@media screen and (max-width: 420px) {
  .container {
    margin: 20px auto;
    display: inline;
    grid-template-columns: 330px 300px;
    grid-gap: 20px;
  }
}

.container .box {
  border-radius: 10px;
  padding: 24px 16px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border: 1px solid rgb(204, 204, 204);
  text-align: center;
}

img.social-icon {
  width: 30px;
  height: 30px;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }


/* 1. Transparent Navbar */
.transparent-nav {
    /*background-color: transparent !important;*/
    background-color: rgba(78, 86, 149, 0.3) !important;
    /*background-color: #4e567e;*/

    padding-top: 1rem;
    z-index: 10;
    backdrop-filter: blur(10px);
}

    .transparent-nav a {
        color: #e0e0e0 ;
        transition: all 0.4s ease-in-out;
    }
        .transparent-nav a:hover {
            color: rgba(12, 158, 178,0.7);
        }

    .nav-link {
        color: #e0e0e0 !important;
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-left: 1rem;
        text-transform: uppercase;
    }

        .nav-link:hover {
            color: #ffffff !important;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }
    /* 2. Hero Wrapper & Image */
    .hero-wrapper {
        position: relative;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        background-color: #0d0414; /* Fallback color */
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        /* Grayscale + Contrast to match the moody photo style if using a generic image */
        filter: grayscale(40%) contrast(1.1);
        z-index: 0;
    }
    /* 3. The Purple Fog Overlay */
    /* This creates the dark purple tint over the image */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: radial-gradient(circle at center, rgba(46, 26, 71, 0.4) 0%, rgba(18, 10, 30, 0.95) 90%);
    }
    /* 4. Content Styling */
    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

.custom-hero {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .artist-name {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .artist-role {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 1.25rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 3px;
        opacity: 0.9;
    }
    /* 5. Custom 'Ghost' Button */
    .custom-cta-btn {
        background-color: rgba(73, 56, 107, 0.5); /* Semi-transparent purple */
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 12px 32px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

        .custom-cta-btn:hover {
            background-color: rgba(99, 76, 145, 0.7);
            border-color: rgba(255, 255, 255, 0.8);
        }
    /* Mobile Responsiveness */
    @media (max-width: 600px) {
        .artist-name {
            font-size: 2.5rem;
        }

        .artist-role {
            font-size: 1rem;
        }
    }

.custom-hero h1 {
    background: linear-gradient(108deg, rgba(180,210,235,1), rgba(220,235,245,1), rgba(12, 158, 178,0.7));
    background-clip: text;
    background-size: 200% 100%; /* Make the background wider than the text */

    color: transparent;
    /* Apply the animation */
    animation: hero__animation 10s linear infinite;
}

.custom-hero h2 {
    background: linear-gradient(208deg, rgba(180,210,235,1), rgba(220,235,245,1), rgba(12, 158, 178,0.7));
    background-clip: text;
    background-size: 200% 100%; /* Make the background wider than the text */

    color: transparent;
    /* Apply the animation */
    animation: hero__animation 10s linear infinite;
}

.custom-card {
    padding: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    transition: box-shadow 0.4s ease-in-out;
}

.custom-card:hover {
    box-shadow: rgba(17, 17, 26, 0.15) 0px 4px 16px, rgba(17, 17, 26, 0.15) 0px 8px 24px, rgba(17, 17, 26, 0.15) 0px 16px 56px;
}

.custom-glass-pane {
    background-color: rgba(250,250,250,0.7);
    backdrop-filter: blur(5px);
    width: 65%;
    padding: 4rem;
    margin: 3rem auto;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.albums__glass-pane {
    background-color: rgba(250,250,250,0.7);
    backdrop-filter: blur(5px);
    width: 90%;
    padding: 2rem;
    margin: 3rem auto;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.albums__glass-pane img {
    width: 200px;
    height: 200px;
}

.custom-mottled__header {
    background: linear-gradient(to right, rgba(180,210,235,1), rgba(220,235,245,1));
    background-clip: text;
    background-size: 200% 100%; /* Make the background wider than the text */

    color: transparent;
    /* Apply the animation */
    animation: blue-mottled__animation 10s linear infinite;
}

@keyframes blue-mottled__animation {
    0% {
        background-position: 0 0; /* Start position */
    }

    100% {
        background-position: 200% 0; /* End position, moves across the wider background */
    }
}

.rainbow-text-animated {
    /* Inherit the base styles from above, then add animation styles */
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet, red); /* Add the first color at the end for seamless looping */
    background-size: 200% 100%; /* Make the background wider than the text */

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Apply the animation */
    animation: rainbow_animation 3s linear infinite; /* Adjust duration (3s) as needed for speed */
}

/* Define the animation keyframes */
@keyframes rainbow_animation {
    0% {
        background-position: 0 0; /* Start position */
    }

    100% {
        background-position: 200% 0; /* End position, moves across the wider background */
    }
}
@keyframes hero__animation {
    0% {
        background-position: 70% 10%; /* Start position */
    }

    100% {
        background-position: 90% 90%; /* End position, moves across the wider background */
    }
}