@font-face {
    font-family: 'Satisfy';
    src: url(/wslib/font/Satisfy.ttf);
}

.columns {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    gap: 10px; /* Adds some spacing */
    align-items: stretch; /* Ensures both columns have the same height */
}

.columns .column {
    flex: 1; /* Makes both columns equal width */
    padding: 20px;
    display: flex; /* Enables flex behavior inside each column */
    flex-direction: column; /* Ensures content stacks properly */
    justify-content: center; /* Centers content vertically */
    /* background-color: #f4f4f4; */
    /* border: 1px solid #ddd; */
}

.landing .content.reversed h2 {
    text-align: right;
    right: -40px;
    background: linear-gradient(90deg, #97545f 0%, #97545f 70%, #a06b75 100%,);
}



body.landing {
    background: #a06b75;
    min-height: 100vh;
    padding-bottom: 100px;
}

.landing_title {
    text-align: center;
}

.landing_title_img {
    width: 100%;
    background-color: #fff;
}

.landing_title_img img {
    width: 80%;
    display: block;
    margin: 0 auto;
}


.landing_title_text {
    text-align: center;
    font-family: Satisfy;
    font-size: 70px;
    /* font-weight: bold; */
    padding: 50px 0;
}

.landing_title_text {
    /* color: #9f293e; */
    /* color: #fff; */
    color: #9d0828;
    border-top: 3px solid #bcbcbc;
    text-shadow: 0 0 20px #fff;
    
    /* box-shadow: 0 7px 6px rgba(0,0,0,0.05); */
    /* background-color: #e3cbd1;
    border-bottom: 3px solid #fff; */
    
    background-image: url(/img/landing-top-paper-gradient.png);
    background-position: bottom;
    opacity: 0.9;
    /* background-image: url(/in/img/textures/sponge.png); */
    /* background-size:cover; */

}

.landing .content {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    margin-top: 50px;
}


.landing .content h2 {
    position: relative;
    left: -40px;
    display: inline-block;
    padding: 10px 40px;
    margin: 10px;
    min-width: 70%;
    font-family: Raleway;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    background-color: #97545f;
    background: linear-gradient(-90deg, #a06b75 0%, #97545f 30%, #97545f 100%);
    border-radius: 10px;
}

.landing .content.odd {
    text-align: right;
}

.landing .content.odd h2 {
    left: 40px;
    background: linear-gradient(90deg, #a06b75 0%, #97545f 30%, #97545f 100%);
}

.landing .content.odd .column {
    text-align: left;
}


.landing .content .column.details {
    /* background-color: #ffffff24; */
}


.landing .content .details_block {
    /* position: relative; */
    /* left: -60px; */
    /* z-index: 1; */
    font-size: 30px;
    background-color: #ffffff2a;
    box-shadow: 0 0 10px #00000024;
    padding: 40px;
    /* background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);     */
    border-radius: 20px;
}


.landing .content .column.image {
    overflow: hidden;
}


.landing .content .column.image img,
.landing .content .column.image video,
.landing .content .column.details img,
.landing .content .column.details video  {
    display: block;
    width: 100%;
    transition: all 1s;
}

.landing .content .link a {
    display: inline-block;
    font-size: 30px;
    color: #ffffff;
    padding: 15px;
    border: 3px dotted #fff;
    border-radius: 15px;
    background-color: #2581fe;
    box-shadow: 0 0 5px #00000070;
}
.landing .content .link a:hover {
    animation: landinghoverwiggle 0.4s ease-in-out infinite alternate;
}

.landing .content .landing_share_link {
    color: #fff; 
    filter: brightness(0) saturate(100%) invert(100%); 
    display: inline-block;
    width: 80px;
    margin: 3px;
    transition: all 0.5s;
}

.landing .content .landing_share_link:hover {
    transform: scale(120%);
    /* color: #6eb9fa;  */
}

@keyframes landinghoverwiggle {
  0% { transform: rotate(-3deg); }
  100% { transform: rotate(3deg); }
}


/********************************************************************
                                SHOWCASE
********************************************************************/

.landing .showcase_container {
    position: relative;
    display: inline-block;
    width: 100%;
}


.landing .showcase_container .showcase_slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    display: block;
}

.landing .showcase_container .showcase_slide.showcase_main_slide {
    position:static;
}

.landing .showcase_container .showcase_slide.showcase_current {
    opacity: 1;
}

.landing .showcase_container .showcase_nav {
    position: absolute;
    width: 100%;
    top: 50%;
}

.landing .showcase_container .showcase_nav div {
    position: absolute;
    z-index: 9;
    transform: translate(-35%);
    left: 0px;
    font-size: 40px;
    color: #fff;
    opacity: 0.3;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.4s;
}

.landing .showcase_container .showcase_nav .showcase_nav_next {
    position: absolute;
    left: auto;
    right: 0px;
    transform: translate(35%);
}

.landing .showcase_container:hover .showcase_nav div {
    opacity: 0.7;
    cursor: pointer;
}

.landing .showcase_container:hover .showcase_nav:hover div {
    opacity: 1;
}


/********************************************************************
                                NAV MENU
********************************************************************/

.landing_nav_menu {
    z-index: 2;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing_nav_menu_item {
  position: relative;
  background: #d2bfc3;
  border: 2px solid #fff;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  font-size: 22px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  min-width: 30px;
}

.landing_nav_menu_item_share {
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
}

.landing_nav_menu_item_share img {
  width: 4vw;
  min-width: 45px;
  margin-right: 3px;
}

.landing_nav_menu_item::after {
  content: attr(data-title);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  white-space: nowrap;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.landing_nav_menu_item:hover::after {
  opacity: 1;
}


/* Responsive Design */
@media (max-width: 768px) {
    
    .landing_title_text {
        font-size: 45px;
    }
    
    .columns {
        flex-direction: column; /* Stack columns vertically */
    }
    
    .landing .content {
        padding-left: 7px !important;
        padding-right: 14px;
    }

    .landing .content h2 {
        display: block !important;
        text-align: center !important;
        background: #97545f !important;
        position: static !important;
        font-size: 32px;
        padding: 15px;
        font-size: 22px;
    }
    .landing .content .link {
        text-align: center !important;
        margin-top: 20px;
    }

    .landing_title_img img {
        width: 90%;
    }

    .landing .showcase_container {
        width: 95%;
    }

    .landing .content .details_block {
        padding: 20px;
        font-size: 20px;
    }

    .landing_nav_menu_item {
        padding: 10px 0px;
        cursor: pointer;
    }

    .landing_nav_menu_item_share img {
        min-width: 40px;
        margin-right: 3px;
    }    

    .landing_nav_menu_item:hover::after {
        opacity: 0 !important;
    }

}

/********************************************************************
                                CEGEP
********************************************************************/

.columnleft .CEGEP .calendar_url {
    border-bottom: 1px solid;
}

.columnleft .CEGEP .calendar_url a {
    padding: 8px;
    display: block;
    color: #000000;
    font-size: 1.2rem;

}

.columnleft .CEGEP .calendar_url a:hover {
    background-color: #00000021;
}

