/* light */

:root {
    --color-scheme:light;
    --background: #EBC3C3; 
    --backgroundHeader: #BD8383;
    --textColor: #000000;
    --textColorDisabled: #555555;
    --contentTextColor: #8E533D;
    --button: #aaaacc;
    --buttonActive: #ccccee;
    --buttonDisabled: #9999aa;
    --buttonTextColor: #000000;
    --border:#000000;
    --headerHeight: 140px;
    --headerHeightAdmin: 50px;
    --itemSelected: #202050;
    --selected: #ce9756;
    --contentMaxWidth: 800px;
    --titleColorStart: #FFF7AD;
    --titleColorEnd: #FFA9F9;

}

body, html {
    padding: 0px 0px 0px 0px;
    background-color: var(--background);
    font-family: 'Poppins', sans-serif;;
    color:var(--textColor);
    font-size: 14pt;
    margin:0px;
}

h1, h2, h3, h4, h5 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.header {
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: var(--headerHeight);
    background-color: var(--backgroundHeader);
}

.footer {
    width: 100%;
    margin-top: 40px;
    background-color: var(--backgroundHeader);
    padding: 10px;
    box-sizing: border-box;

}

.header-menu {
    text-transform: uppercase;
    font-weight: bold;
    font-size:13pt;
    margin-left:10px;
    margin-right:10px;
}

.header-menu.submenu {
    font-size:12pt;
}

.header-slider {
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
    background-color: var(--backgroundHeader);
    border-top: solid 0px var(--background);
}

.header-slider-item {
    text-transform: uppercase;
    font-weight: bold;
    font-size:13pt;
    margin: 10px 20px;
}

.header-slider-item.submenu {
    font-size:12pt;
    margin-right:40px;
}

.content {
    width:100%;
    margin-top: var(--headerHeight);
    background-color: var(--background);
    min-height:1000px;
    color: var(--contentTextColor);
}

.contentCentered {
    margin: auto;
    max-width: var(--contentMaxWidth);
    margin-top: var(--headerHeight);
    background-color: var(--background);
    min-height:1000px;
    color: var(--contentTextColor);
}

.contentCentered.inline {
    margin-top: 0px;
    min-height: 0px;
}

.title {
    text-transform: uppercase;
    background-image: linear-gradient(to right, var(--titleColorStart), var(--titleColorEnd));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 20pt;
    font-weight: bold;
    display: inline-block;
}

a:link, a:visited, a:hover, a:active {
    color: var(--contentTextColor);
    font-weight: bold
}
a.basic {
    text-decoration: none;
    color: var(--textColor) !important;
}

.menuLink {
    min-height:40px;

    background-color: transparent;
    background-image: linear-gradient(to right, transparent, #ffffff88);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: right;
    /* Animate the position shift */
    transition: background-size 0.4s ease, color 0.4s ease;
}
.menuLink:hover {
  background-size: 100% 100%;
}

.flex-container {
  display: flex;
  flex-wrap: wrap; 
  justify-content: flex-end;
}

.flex-container-header {
  display: flex;
  flex-wrap: wrap; 
  justify-content: flex-start;
  border-bottom: solid 1px var(--background);
  width:100%
}

.flex-child {
  box-sizing: border-box;
}

.verticalCollapsedDiv {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.6s ease-out 0s;
}
.verticalCollapsedDiv.expanded {
  max-height: 1000%; /* Or a sufficient value to show all content */
  /* If content height is dynamic, a value larger than expected is needed. 
     For a true auto-height transition, use a transform or specific techniques */
}

.verticalCollapsedDivAdmin {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.6s ease-out 0s;
}
.verticalCollapsedDivAdmin.expanded {
  max-height: 2000%; /* Or a sufficient value to show all content */
  /* If content height is dynamic, a value larger than expected is needed. 
     For a true auto-height transition, use a transform or specific techniques */
}

.verticalExpandedDiv {
    max-height: 100%;
    transition: 0.5s all 0s;
}

/* links */
img.rounded {
    object-fit: cover;
    border-radius: 50%;
    height: 100px;
    width: 100px;
}
.linkitem {
    border-radius:28px;
    height:50px;
    margin:auto;
    background-color:white;
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: left;
    border: 3px solid black;
}

/* Button Ripple effect */
button {
    background-color:var(--button); 
    height: 40px; 
    padding: 0px 10px 0px 10px;
    color:var(--buttonTextColor);
    border: 0px solid var(--button);
    border-radius:20px;
    margin: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
button:disabled,
button[disabled]{
    background-color:var(--buttonDisabled); 
    color: gray;
}
button.link {
    margin: 0px;
    cursor: pointer;
}

.ripple {
  background-position: center;
  transition: background 0.7s;
}
.ripple:hover {
  background: var(--button) radial-gradient(circle, transparent 1%, var(--button) 1%) center/15000%;
}
.ripple:active {
  background-color: var(--buttonActive);
  background-size: 100%;
  transition: background 0s;
}

/* Input text field */
input[type="text"], input[type="password"], input[type="number"], input[type="date"], textarea {
    /* color-scheme: var(--color-scheme); */
    border: 0px solid var(--border);
    border-radius:5px;
    height: 40px; 
    box-sizing: border-box;
}

/* File input */
input[type="file"]::file-selector-button {
    background-color:var(--button); 
    height: 40px; 
    padding: 0px 10px 0px 10px;
    color:var(--textColor);
    border: 0px solid var(--button);
    border-radius:5px;
    margin: 3px;
}

/* blockquotes */
blockquote {
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 3px solid var(--contentTextColor); /* Accent line color */
  font-style: italic;
}

blockquote p {
  margin: 0; /* Prevents nested paragraph margins from breaking layout */
}

/* overlaping containers */

.overlap_container {
    display: grid;
}

.overlap_object {
    grid-area: 1 / 1;
}

/* image title*/
.image_title {
    text-transform: uppercase;
    font-weight: bold;
    color:var(--textColor);
    background-image: linear-gradient(to right, transparent, #ffffff88);
    min-height:40px;
    width: 100%;
    margin:auto;
    display:block;
    text-align: center;
    align-content: center
}