﻿:root{
    --green-old: #1c4b4a;
    --blue-old: #5b42e9;

    
    --primary-green: #1c4b4a;       /* Dark Forest Green */
    --primary-purple: #5a3a7d;      /* Deeper Purple, less neon */

    --neutral-bg: #121212;          /* Dark neutral background */
    --neutral-text: #f0f0f0;        /* Light text for contrast */
    --neutral-border: #2a2a2a;      /* Soft border contrast */
    --dark-text: #121212;
    --light-bg: #f4f4f4;
    --dark-warning: #ac0035;
    --light-warning: #e8014c;
    
    --primary-red: #ac0f0f; 
    --primary-white: #C0C0C0;
    --primary-beef: #DEADBEEF;
}

html {

}

body {
    min-height: 70vh;
    font-family: 'Lora', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    color: var(--neutral-text);
    background: linear-gradient(270deg, var(--primary-green), var(--primary-purple));
    background-size: 600% 600%;
    animation: bgShift 15s ease infinite;
    display: flex;
    flex-direction: column;
}

.main-panel {
    width: 100%;
    max-width: 40%;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
    background-color: var(--blue-old);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    flex: 1; /* this fills the space between header and footer */
    overflow: auto;
}

@keyframes bgShift {
    0% {background-position: 0 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0 50%;}
}

.header {
    min-height: 5vh;
    background: linear-gradient(270deg, #109b30, #153914);
    background-size: 100% 100%;
    border-bottom: 2px solid #000;
    line-height: 1rem;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}

.footer {
    min-height: 5vh;
    background: linear-gradient(270deg, green, var(--primary-green));
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--neutral-bg);
    border-top: 0.1rem solid var(--neutral-border);
    line-height: 1.75rem;
    padding-bottom: 2rem;
}

.footer .copyright {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark-text);
}

.header-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dangerous-ginger {
    font-weight: bold;
    flex: 3;
    text-align: right;
    padding: 1.0rem;
}

.external-links {
    display: flex;
    gap: 1rem;
    margin-top: 2px;
}

a:link {
    color: var(--light-bg);
    font-style: italic;
}

a:visited {
    color: var(--light-bg);
    filter: brightness(0.9);
}

a:hover{
    transform: scale(1.3);
    filter:  brightness(1.3);
    color: var(--dark-text);
}

a:active {
    color: var(--light-bg);
}

a:focus {
    transform: scale(1.3);
    filter:  brightness(1.3);
    color: var(--light-bg);
}

.header-banner {
    flex: 1;
    text-align: center;
}

.ul-wrapper {
    max-width: 50%;
    padding: 0.5rem;
    margin: 0.5rem auto;
}

.ul-wrapper li {
    text-align: left;
    color: var(--neutral-text);
}

.pronouns {
    flex: 3;
    text-align: left;
    font-weight: bold;
    justify-content: center;
    padding: 1.0rem;
}

.social-panel {
    min-width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

.contact {
    padding: 0.1rem;
}


.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poem-wrapper {
    max-width: 50%;
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    white-space: pre-line;
    text-align: center;
    line-height: 2.5;
}

.poem-wrapper .poem-title {
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: underline;
}

.poem-wrapper .poem-end {
    font-size: 1.1rem;
    color: var(--dark-warning);
    font-weight: bold;
}

.tos-wrapper .tos-warn {
    font-size: 1.25rem;
    color: var(--light-warning);
    font-weight: bold;
    text-align: center;
}

.checkbox-wrapper .radio-wrapper {
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding: 0.5rem;
    margin: 0.5rem auto;
    max-width: 500px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.0;
}

.about-wrapper {
    max-width: 60%;
    background-color: var(--primary-white);
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #333;
    white-space: pre-line;
    text-align: center;
}

.about-limits-title{
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.3rem;
    color: var(--primary-red);
    margin: 0;
}

.about-title {
    font-weight: bold;
    font-size: 2.0rem;
    text-decoration: underline;
    text-align: center;
}

.about-warn {
    font-size: 1.0rem;
    color: var(--light-warning);
    font-weight: bold;
}

.about-warn-double {
    font-size: 1.25rem;
    color: var(--dark-warning);
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
}

.about-specialties{
    text-align: center;
    font-style: italic;
    color: var(--dark-text);
}

.about-title{
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.2rem;
}

.about-subheading{
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.2rem;
}

.application-wrapper {
    max-width: 50%;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 5px;
    text-align: left;
}

.application-box {
    background-color: var(--primary-green);
    color: var(--neutral-text);
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    text-align: center;
}

.application-header {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.3rem;
    text-align: center;
}

.application-header-warn {
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    color: var(--light-warning);
}

.application-warn {
    font-size: 1.0rem;
    color: var(--light-warning);
    font-weight: bold;
    text-align: center;
}


.hard-limits{
    font-weight: bold;
    color: var(--primary-red);
    margin: 0;
}

.navbar-wrapper {
    background-color: rgba(0,0,0,0.0);
    padding: 0.1rem;
    margin: 0.1rem auto;
    border-radius: 1px;
    font-style: italic;
    font-weight: bold;
    white-space: nowrap;
    align-items: center;
    display: flex;
}

.session-grid > div {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
}
.session-grid input {
    border: 2px solid var(--primary-purple);
    background-color: var(--light-bg);
    color: var(--dark-text);
    border-radius: 6px;
    padding: 0.4rem;
}
.session-grid label {
    width: 1rem;
    font-weight: bold;
    color: #fff;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

img.about {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 1rem auto;
}


.hard-limits-header {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.3rem;
    margin-top: 1rem;
    color: var(--primary-red);
}

.main-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    html {
        font-size: 1.0rem;
    }
}

.btn:focus, 
.btn:active:focus, 
.btn-link.nav-link:focus, 
.form-control:focus, 
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--primary-white), 0 0 0 0.25rem #258cfb;
}

/*
.email-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--primary-purple), rebeccapurple);
    color: #222;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.email-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    color: var(--neutral-text);
}
*/

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(50%);
    color: #666;
}

.navbar {
    background-color: rgba(0,0,0,0.0);
    list-style: none;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.navbar a, .navbar li {
    margin: 0;
    padding: 0;
    line-height: .4rem;
}

.logo a {
    color: var(--neutral-text);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: block;
    padding: 1rem;
    color: var(--neutral-text);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--neutral-text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-purple);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    min-width: 150px;
    white-space: nowrap;
}

.dropdown-image {
    width: 32px;
    height: 32px;
    display: block; /* Or block if you prefer */
    object-fit: contain;   /* Helps prevent squishing */
    vertical-align: center;
    horiz-align: left;
}

.dropdown-menu li, 
.dropdown-menu li a {
    color: var(--neutral-text);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.small-icons img {
    width: 24px;
    height: 24px;
    margin: .5rem;
}

.large-icons img {
    width: 32px;
    height: 32px;
    margin: .5rem;
}

#age-check-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    color: var(--neutral-text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-check-content {
    text-align: center;
    background: #222;
    padding: 2rem;
    border-radius: 10px;
}

.under-construction{
    text-align: center;
    color: var(--dark-warning);
    background: var(--neutral-bg);
    font-weight: bold;
    font-size: 1.2rem;      
}

form {
    font-size: 0.9rem;
    background-color: var(--primary-green);
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 2rem auto;
    color: var(--neutral-text);
}

form input,
form textarea {
    padding: 0.75rem;
    border-radius: 10px;
    border: 2px solid  var(--primary-purple);
    background-color: var(--primary-white);
    color: #222;
}

form label {
    font-weight: bold;
    font-size: 1.0rem;
    margin-bottom: 0.25rem;
}

form button[type="submit"] {
    background-color: #5a3eb1;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

input[type=text],
input[type=email],
textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
}

textarea {
    resize: vertical;
    min-height: 150px;
    width: 100%;
    max-width: 500px;
}

button[type="submit"],
input[type=submit] {
    background-color: #3f2d7e;
    background: var(--primary-purple);
    color: var(--neutral-text);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1.0rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"],
input[type=submit]:hover {
    background: var(--primary-purple);
}

button[type="submit"] {
    display: block;
    margin: 1rem auto 0 auto;
    padding: 0.75rem 2rem;
    background-color: var(--primary-purple);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    body {
        background-image: linear-gradient(to right, #6a00f4, #ff6ec7); /* Static fallback */
        background-size: cover;
        animation: none !important;
    }
    .main-panel {
        padding: 0.5rem;
        max-width: 95%;
    }
}

fieldset {
    margin-bottom: 1.5rem;
}

fieldset label {
    margin-right: 1em;
}

legend {
    font-size: 1.0rem;
    font-weight: bold;
}

.about-wrapper ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.about-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

form div {
    margin-bottom: 1rem;
    margin-top: 0;
}

.emailInvalid {
    color: var(--primary-red);
    font-style: italic;
    margin-top: 0.5rem;
}

input[type="text"] {
    width: 90%;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

fieldset label {
    margin-right: 1rem;
    display: inline-block;
}

legend {
    margin-bottom: 0.5rem;
}

@media (hover: none) and (pointer: coarse) {
    body {
        background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
        background-size: cover;
        animation: none;
    }
}

@media (max-width: 768px) {
    .image-wrapper .landscape{
        flex: 1 1 45%;
    }
    
    .image-wrapper .portrait {
        flex: 1 1 40%;
    }
}

.gallery-frame {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.image-wrapper {
    padding: 5px;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-wrapper.landscape {
    flex: 1 1 18%;
}

.image-wrapper.portrait {
    flex: 1 1 12%;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

.gallery-frame img {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.gallery-frame img:hover {
    transform: scale(1.05);
}

#fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#fullscreen-viewer img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}


