*{
    font-family: 'Times New Roman', Times, serif;
}

body{
    background-color: rgb(255, 192, 224);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin:0;
    align-items: center;
}
.container{
    width:calc(100% - 10px);
    max-width:1400px;
    /* min-width:250px; */
    background-color: rgb(255, 146, 210);
    padding:10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
    color:white;
    margin:10px auto;
}
.content{
    background-color: rgb(243, 97, 182);
    border-radius: 10px;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
    padding: 10px;
}
.container.no{
    padding:0;
    border-radius: 0;
}
#content{
    flex-direction: row;
}
@media (max-width: 600px) {
    #content {
        flex-direction: column;
    }
    .sidebar{
        width:100% !important;
        min-width:100% !important;
    }
    .container{
        width:calc(100% - 20px);
        margin:10px auto;
    }
    .nav{
        flex-wrap: wrap;
    }
}
.hero{
    width:100%;
    height:fit-content;
    padding:0;
    display: block;
    margin: auto;
    border-radius: 40px 40px 0px 0px;
    margin-bottom: 20px;
}
.hero-img{
    width:100%;
    user-select: none;
    border-radius: 40px 40px 0px 0px;
}
.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:fit-content;
    margin: 0 auto;
    transform: translateY(50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
   
}
.hero-text h1{
    font-size:8vmin;
}
.nav{
    margin: 10px auto;
    width:90%;
    max-width: 100%;
    flex-direction: column;
}
.nav div{
    display: flex;
    flex-direction: row;
}
.sidebar{
    background-color: #ffcce7;
    border-radius: 10px;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
    padding: 0;
    margin: 0;
    width:100%;
    height:fit-content;
    max-height: unset;
    z-index: 999;
    /* transition: all 0.2s ease-in-out; */
}

.flex{
    display: flex;
}

.flex-fit{
    display: flex;
    flex:0 1 1;
    flex-direction: column;
    width:100%;
}

h3{
    margin:0;
    background-color: #ffb1d9;
/* 
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid var(#f896c8);
    border-bottom: 3px solid var(#f896c8); */

}

.nav-item a, .title{
    color: #ff5db1 !important;
    filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white) drop-shadow(0px 2px 2px #b2427a) drop-shadow(0px 1px 1px #b2427a)!important;
    text-align: center;
}

h3{
    margin:0;
    background-color: #ffb1d9;
    text-align: center;
    padding-bottom: 7px;
}
h3 span {
    color: #ff5db1 !important;
    filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white) drop-shadow(0px 2px 2px #b2427a) drop-shadow(0px 1px 1px #b2427a)!important;
}


.nav-item{
    display: block;
    padding: 5px;
    text-align: center;
    background-color: #ffcce7;

    border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 2px solid var(#f896c8);
    margin: 2px;


    flex: 1 1 auto;
    width:100%;
}
.nav-item a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.nav-item:hover{
    background-color: #ffb1d9;
    cursor: pointer;
    filter: drop-shadow(0px 2px 2px #b2427a) drop-shadow(0px 1px 1px #b2427a);
}
.nav-item:active{
    filter: drop-shadow(0px 1px 1px #b2427a);
    transform: translateY(1px);
}
.nav-item a:hover{
    color: #ff5db1 !important;
    filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white) drop-shadow(0px 2px 2px #b2427a) drop-shadow(0px 1px 1px #b2427a)!important;
}
.nav-item a:active{
    filter: drop-shadow(0px 1px 1px #b2427a);
    transform: translateY(1px);
}


.divider{
    border-bottom: 2px solid #ff5db1;
    margin: 5px 0;
}

#sidebar-toggle{
    position: fixed;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    background-color: rgb(243, 97, 182);
    border-radius: 10px;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
    display: none;
    z-index: 1000;
}
#sidebar-toggle img{
    width: 30px;
    height: 30px;
}
#sidebar-toggle:focus{
    outline: none;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
}
#sidebar-toggle:hover{
    background-color: #ffb1d9;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
}
#sidebar-toggle:active{
    transform: translateY(1px);
}
@media (max-width: 600px) {
    #sidebar-toggle{
        top: 5px;
        left: 5px;
        padding: 2px;
    }
    #sidebar-toggle img{
        width: 25px;
        height: 25px;
    }
    .sidebar{
        width:100vw;
        position: fixed;
        top: 0;
        left: 0%;
        height: 100vh;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }
    .nav div{
        flex-direction: column;
    }
}

/* .zoomed{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    cursor: zoom-out;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    min-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 5px solid white;
    background-color: white;
}

.open-in-new-tab{
    backdrop-filter: blur(5px) invert(1);
    position: fixed;
    bottom: 0px;
    right: 50%;
    transform: translateX(50%); 
    width: fit-content;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
    z-index: 1001;
} */
a{
    color:blue;
}

.no-margin{
    margin: 0;
}

footer {
    /* position:absolute; */
    /* bottom:0; */
    display: block;
    width:calc(100vw - 60px);
    height:fit-content;
    min-height:100px;
  background-color: #4f0045; /* Dark background */
  color: #fff; /* White text */
  padding: 20px;
  text-align: center;
  display: flex;
}
.footer-column{
    flex: 1 1 0;
    width:100%;
    display: flex;
    flex-direction: column;
    flex-wrap:wrap;
}

@media (max-width: 1000px) {
    footer{
        flex-direction: column;
    }
}

.contact-section {
    margin-top: 20px;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.contact-card {
    background-color: #ffb1d9;
    border: 2px solid rgb(255, 0, 242);
    outline: 2px solid black;
    border-radius: 10px;
    width: 250px;
    padding: 15px;
    text-align: center;
    color: #4f0045;
    filter: drop-shadow(0px 2px 2px #b2427a);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0px 4px 6px #b2427a);
    cursor: pointer;
}

.contact-card h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #ff5db1;
    text-shadow: 1px 1px white;
}

.contact-card p {
    margin: 0;
    word-break: break-all;
}

.contact-card a {
    color: #4f0045;
    font-weight: bold;
    text-decoration: none;
}

.contact-card a:hover {
    color: #ff5db1;
    text-decoration: underline;
}

.contact-card img{
    width:50%;
    filter:invert(1);
}