/* latin-ext */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(/assets/latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
/* latin */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(/assets/latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* :root {
    --text-bright:  #e4b016;
    --text-regular: #e0a526;
} */
* {
    box-sizing: border-box;
    margin: 0; 
    padding: 0; 
    font-family: "Outfit", Arial, Helvetica, sans-serif;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}
*::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
body {
    background-color: rgb(70, 70, 70);
    height: 100vh; 
    margin: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}
.irish-gold *{
    color: var(--text-bright) !important;
    font-weight: 500;
}

.side {
    flex: 20%;
    background-color: var(--primary);
    /* padding: 15px; */
}

.tile-container {
    padding: 5px;
    width: 100%;
    display: flex; 
    flex-direction: column; 
    /* gap: 15px; */
}
.tile-container a, .tile-container div {
     
    color: var(--text-regular) !important;
    font-size: 17px;
}


/* Keyframes for shaking animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
    
}

.tile {
    /* background-color: rgb(0, 122, 51); */
    width: 100%;
    padding: 15px;
    margin: 0; 
    display: flex; 
    /* justify-content: center;  */
    /* align-items: center; */
    text-decoration: none; 
    font-family: 'Outfit', sans-serif; 
    transition: transform 0.2s ease-in-out; /* Smooth transition */
    border-radius: 15px;
}




/* Shake animation on hover */
.tile-shake:hover:not(div) {
    animation: shake 0.5s; /* Duration of the shake animation */
}
.shake a:hover {
    animation: shake 0.5s;
}

.main {
    flex: 80%;
    background-color: rgb(30, 30, 30);
    color: white;
    padding: 15px;
    min-height: 80%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0; 
}

.height100 {
   min-height: 100%;
}

button {
    background-color: transparent;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

button:hover{
    cursor: pointer;
}

.blur {
    filter: blur(100px);
    -webkit-filter: blur(10px);
}
.blur:hover{
    filter: none;
    -webkit-filter: none;
}


.md-link {
    color: var(--text-bright);
}

a:hover {
    transition:ease-in 0.35s;
    background-color: var(--primary-dim);
}


/* Repeating Element Styles */
.credit {
    background-color: var(--primary-dark);
    padding: 15px;
    color: var(--text-regular);
    width: 100%;
}

.credit a {
    color: var(--text-regular)
}


.element-text-area {
    
    min-width: 90%; 
    height: 100px;
    max-height: 100px;
    background-color: var(--background-secondary);
    border-radius: 15px; 
    padding: 25px;
    border: none; 
    color: var(--text-regular) !important;
    margin-bottom: 5px;
}

.element-text-area::placeholder {
    opacity: 1;
    color: var(--text-regular) !important
}

.element-text-area:hover::placeholder {
    opacity: .75;
    color: var(--text-regular) !important
}
.modular-text-area {

    display: flex;
    flex-direction: column;
}

.modular-text-area > .button {
    padding: 5px;
} 
.modular-text-area button {
    padding: 5px;
    border-radius: 5px;
    color: var(--text-regular);
    background-color: var(--background-secondary);
    font-size: 14px;
    min-width: 50px;

}