/*Styling HTML and Body Start */
html, body{
    margin: 0;
    padding: 0; 
}
img {
    pointer-events: none;
}
/*Styling HTML and Body End */

/*Styling Footer Start */
.footer{
    color: white;
    background-color: #222;
}

.footerSpace{
    display: flex;
    justify-content: space-between;
    padding: 0 15%;
    border: 35px solid #222;
}

.where, .socialMedia, .links{
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px){
    .where, .socialMedia, .links{
    display: flex;
    flex-direction: column;
    padding-bottom: 2vh;
    }
}
/*Styling Footer Links Start */
.footer a {
    color: #add8e6;
    text-decoration: none;
}

.footer a:visited {
    color: #add8e6;
}

.footer a:hover {
    color: #87ceeb;
}
/*Styling Footer Links End*/
@media (max-width: 1024px){
    .footerSpace{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15%;
    }
    .where, .socialMedia, .links{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .lansForsakringPic{
        width: 100%;
        height: auto;
    }
}
@media (max-width: 800px){
    .footerSpace{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15%;
    }
    .where, .socialMedia, .links{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .lansForsakringPic{
        width: 100%;
        height: auto;
    }
}
/*Styling Footer End */

/*Styling Header Start */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:rgba(173, 170, 171, 0.8);
    backdrop-filter: blur(6px);
    z-index: 1000;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo img{
    height: 45px;
}
.nav ul{
    list-style: none;
    display: flex;
    gap: 35px;
}
.nav a{
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s;
}
.nav a:hover{
    opacity: 0.7;
}
/*Dropdown header Start*/
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: white;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 190px;
    background: #2c3e3e;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;

    z-index: 9999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: white;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.12);
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}
/*Dropdown header End*/
/*Styling Header End */

/*Styling Index Start */
#welcomePic{
    display: grid;
    grid-template-columns: auto ;
    place-items: center;
    color:white; 
    width:100%; 
    height: 85vh;
    border-bottom: 2vh #3B5998 solid;
}
#welcomeText{
/* Wait for feedback to change back
    justify-content: center;
*/
    display: flex;
    justify-content: Left;
    align-items: center;
    flex-direction: row;
    margin: auto;

    /*Remove if feedback not good*/
    padding-left: 10%;
    padding-right: 10%;

}
#welcomeText h2{
    margin-bottom: 2px;
}
#welcomeText div{
    display:inline-block;
    width: 35%;
}
#welcomeText img{
    padding-left: 5%;
}

@media (max-width:896px) {

#welcomeText h2{
    margin-bottom: 2px;
}
#welcomeText div{
    display:inline-block;
    width: 100%;
}
#welcomeText img{
    padding-left: 5%;
}

}


/*Styling Index End */

/*Styling Sections Start */
.sectionBox{
    background-color: white;
    padding: 6px;
    padding-bottom: 15px;
    border: 2px solid rgb(192, 209, 247);
    border-radius: 20px;
    flex-direction: column-reverse;
    position: relative;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 25vw;
    min-width: 17vw;
    height: 45vh;
}
.sectionBox h3{
    font-size: 200%;
    margin-bottom: 2px;
    margin-top: 5px;
}
.sectionBox p{
    margin-bottom: 1em;
    margin-top: 2px;
}
.sectionBox img{
    max-width: 18vw;
    max-height: 28vh;

}
#SectionsPic {
    position: static;
    width:100%; 
    height: 45vh;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto;   
}
#SectionsPic h1{ 
color: rgb(255, 255, 255);
font-size: 6em;

}
@media (max-width: 1024px){
    #SectionsPic h1{ 
    color: rgb(255, 255, 255);
    font-size: 4em;
    }
}


.allSections{
    margin-top: 6vh;
    margin-bottom: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-left: 10%;
    padding-right: 10%;
}
.LearnMore {
      color: whitesmoke;
  background-color: rgb(0, 119, 255);
  font-weight: bold;
    text-decoration: none;
    padding: 8px;
    border-radius: 7px;
    transition: border-radius 0.5s, background-color 0.5s, box-shadow 0.7s;
}
.LearnMore:hover{
  background-color: rgb(47, 144, 254);

    border-radius: 10px;
    box-shadow: 5px 5px rgba(72, 4, 229, 0.918);

}

/*Styling Sections End */

/*Styling SectionTemplate Start */

#sectionPortrait{
    border-radius: 50%;
    height: 225px;
}
@media (max-width: 1024px){
    #sectionPortrait{
    border-radius: 50%;
    height: 120px;
    width: 100px;
    }
}
@media (max-width: 800px){
    #sectionPortrait{
    border-radius: 50%;
    height: 120px;
    width: 100px;
    }
}
/*Styling SectionTemplate End */


/*Styling Event Start */


#eventsOrbi {
    margin-top: 6vh;
    margin-bottom: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.orbiBox{
    max-width: 21vw;
    height: auto;
    min-height: 63vh;
    background-color: white;
    padding: 6px;
    padding-bottom: 15px;
    border: 2px solid rgb(192, 209, 247);
    border-radius: 20px;
    flex-direction: column;
    position: relative;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbiBox h3{
font-size: 1.4em;
overflow: auto;
}
.orbiCover {
    max-width: 90%;
    border-radius: 20px;
}
.orbiDescription{
    max-width: 90%;
}
.orbiDescription p{
    
    overflow: auto;
    max-height: 8vh;
    font-size: 100%;

}
.orbiDate{
    max-width: 90%;
    font-size: 1.3em;
}
@media (max-width:896px) { 
    #eventsOrbi {
        margin-top: 6vh;
    margin-bottom: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    }
    .orbiDescription p{
    
    overflow: auto;
    max-height: 16vh;
    font-size: 100%;

}

    .orbiBox{
    max-width: 80vw;
    background-color: white;
    padding: 6px;
    padding-bottom: 15px;
    border: 2px solid rgb(192, 209, 247);
    border-radius: 20px;
    flex-direction: column;
        position: relative;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
/*Styling Event End */

/*Styling Icons Start */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  transition: opacity 0.5s, box-shadow 0.5s;
}

.fa:hover {
    opacity: 0.7;
    box-shadow: 5px 5px rgba(206, 206, 206, 0.632);
}
.fa-facebook {
  background: #3B5998;
  color: white;
border-radius: 15px;
}
.fa-instagram {
  background: #125688;
  color: white;
border-radius: 15px;
}

/*Styling Icons End */


/*Contact page Start */
.contactInfo{
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    column-gap: 200px;
    width: 100%;
}
#contactImg{
    border-radius: 50%;
    height: 225px;
}
.contactUs{
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
}
@media (max-width: 1024px) {
    .contactInfo{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;}
        #contactImg{
            width: 100px;
            height: 120px;
            border-radius: 50%;
        }
        .contactUs{
    display: flex;
    }
}
@media (max-width: 800px) {
    .contactInfo{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;}
        #contactImg{
            width: 100px;
            height: 120px;
            border-radius: 50%;
        }
        .contactUs{
    display: flex;
    }
}
.contactInfo ul {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 3vh;
    margin: 0;
    padding-left: 0;
}
.studentUnionBoard{
    display: flex;
    flex-direction: column;
    width: 100%;
    width: 40%;
    right: 28%;
    padding-left: 10%;
    padding-right: 10%;
}
.ContactInformationTitle{
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
}
#contactWelcomePic{
    display: grid;
    grid-template-columns: auto ;
    place-items: center;
    color:white; 
    width: 100%; 
    height: 20vh;
}
#contactUsSec{
    display:flex;
    flex-direction: row;   
    padding-right:10%;
}
/*Contact page End */

/*BecomeMemberBanner page start */
#memberBanner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url(/Content/TempImg.png);
    height: 36vh;
    width: 100%;

}
#memberDiv{
    width: 100%;
}
.memberContainer{

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;

    padding-left: 20%;
    padding-right: 20%;
}
.memberContainer h2 {
    font-size: 48px;
        margin: 1vh;
}
.memberContainer p{
    font-size: 16px;
        margin: 1vh;
}
.memberButton{
        margin: 2vh;
      color: whitesmoke;
  background-color: rgb(0, 119, 255);
  font-weight: bold;
    text-decoration: none;
    padding: 8px;
    border-radius: 7px;
    transition: border-radius 0.5s, background-color 0.5s, box-shadow 0.7s;
}
.memberButton:hover{
  background-color: rgb(47, 144, 254);

    border-radius: 10px;
    box-shadow: 5px 5px rgba(72, 4, 229, 0.918);

}
@media (max-width:896px) { 
    #memberBanner {

    height: 50vh;
    width: 100%;

}

.memberContainer{


    padding-left: 10%;
    padding-right: 10%;
}
.memberContainer h2 {
    font-size: 48px;
        margin: 1vh;
}
.memberContainer p{
    font-size: 16px;
        margin: 1vh;
}
}

/*BecomeMemberBanner page end*/

/*Archive page Start*/
.archive-page {
    max-width: 1100px;
    margin: 120px auto 60px; /* space for fixed header */
    padding: 0 20px;
    text-align: center;
}

.archive-page h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e3e;
}

.archive-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* ===== GRID LAYOUT ===== */

.archive-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== CARDS ===== */

.card {
    background: white;
    padding:18px 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2c3e3e;
}

.card p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== BUTTON ===== */

.archive-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #2c3e3e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.archive-btn:hover {
    background: #1f2e2e;
}
/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 120px 20px 60px; /* space for fixed header */
    background: #f7f9f9;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* TEXT */

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e3e;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* IMAGE */

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}
/*Archive page End*/

/*Become a Member page start*/
#becomeMemberSec{
    display: grid;
    grid-template-columns: auto ;
    place-items: center;
    color:white; 
    width: 100%; 
    height: 45vh;
}
#becomeMemberWelcome{
    display: flex;
    flex-direction: row;
    padding-right:10%;
    padding-left:10%;
}
#becomeMemberImg{
    margin-left: 15%;
    margin-top: 5%;
}
#memberBenefits{
    text-align: center;
    justify-content: center;
    padding-top:5%;
    padding-right:10%;
    padding-left:10%;
    padding-bottom: 5%;
    background-color:#e2f6ffc5;
}
.benefitsList{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin:0;
}
#secondMemberSec{
    display:grid;
    justify-content: center;
    text-align: center;
    color: white;
}

/*Site Template Start*/
/* Place StandardPage class on a div between the header and footer div*/
.StandardPage{
    display:grid;
    place-items: center;
    margin: auto;
    background-color: rgb(255, 255, 255);
}
    .StandardPage p{
        font-size: 100%;
    }
    .StandardPage h2{
        font-size: 3em;

    }
    .StandardPage section{
        width: 100%;
        padding-bottom: 3.5%;
        padding-top: 3.5%;

    }
    .StandardPage section:nth-child(odd){
    background-color: #e2f6ffc5;

    }
    /* vvv legacy if you see this in the code remove the class. I will remove this later */
    .StandardSectionSetup {
        width: 100%;
    }
    /*Place this under section in a div, with the content within the div*/
.StandardRowDisplay {
    flex-direction: row;
    padding-top: 3%;
    gap: 10%;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*Same as RowDisplay*/
.StandardColDisplay {
    flex-direction: column;
    padding-top: 3%;

    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.StandardImg {
    width: 50%; 
    height: 45%;
    min-height: 300px; 
    min-width: 400px;
}
.StandardImgSmall {
    width: 70%; 
    max-width: 30vw;
}
.StandardLineDivider {
    height: 2vh;
    background-color: #3B5998;
    width: 100%;
}
@media (max-width:896px) {
        .StandardPage p{
        font-size: 100%;
    }
    .StandardPage h2{
        font-size: 2em;

    }
#whoAreWe {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.StandardImg {
    min-height: 100%; 
    min-width: 100%;
}
.StandardImgSmall {
    min-width: auto;
}
.StandardRowDisplay{
/* Wait for feedback to change back
    justify-content: center;
*/
    display: flex;
    justify-content: Left;
    align-items: center;
    flex-direction: column;
    margin: auto;
    /*Remove if feedback not good*/

}
.allSections{

    display: flex;
    align-items: center;
    margin: auto auto;
    justify-content: center;
    flex-direction: column;
    max-width: 60vw;
}
.sectionBox{

    flex-direction: column-reverse;
    position: relative;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 60vw;
    height: auto;
}
.sectionBox h3{

    margin-bottom: 2px;
    margin-top: 5px;

}
.sectionBox p{

    margin-bottom: 1em;
    margin-top: 2px;
}
.sectionBox img{
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    height: 100%;
}

}
/*Site Template End*/

.skosexHero {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.heroTestImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.skosexHero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.skosexHeroTitle {
    position: relative;
    z-index: 2;

    background: rgba(25, 35, 35, 0.72);
    backdrop-filter: blur(5px);

    padding: 35px 70px;

    border-radius: 14px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.skosexHeroTitle h1 {
    color: white;

    font-size: 82px;
    font-weight: 700;

    margin: 0;

    letter-spacing: 1px;

    text-shadow:
            0 3px 10px rgba(0,0,0,0.65),
            0 1px 2px rgba(0,0,0,0.8);
}

.skosexCard {
    background: white;
    padding: 28px;
    margin: 15px;
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: 0.25s ease;
    cursor: pointer;
}

.skosexCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.skosexCard h3 {
    font-size: 32px;
    margin-top: 0;
    color: #2c3e3e;
}

.skosexCard p {
    color: #444;
}

@media (max-width: 896px) {
    .skosexHeroTitle {
        padding: 20px 30px;
    }

    .skosexHeroTitle h1 {
        font-size: 42px;
    }
}
.skosexGallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 1100px;
}

.skosexGallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.skosexButton {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background-color: #2c3e3e;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
}
@media (max-width: 896px) {

    .skosexHeroTitle {
        padding: 20px 30px;
    }

    .skosexHeroTitle h1 {
        font-size: 42px;
        text-align: center;
    }
}
/*Skosex Page End*/
