/*  */
/*  */
/* THEME COLORS & GENERAL LAYOUT */
/* Heading font: Montserrat, sans-serif uppercase, h1 w/4px letter space*/
/* General text font: */
/* Link font: comfortaa w/3px spacing & uppercase */

/* 
Lightest Pink: FFE5EC
Lighter Pink: FFC2D1
Light Pink: FFB3C6
Pink: FF8FAB
Dark Pink: FB6F92
Purple: 7F2CCB
Grey/Blue: 414361
Dark Grey/Blue: 2A2D43
Dark Brown Grey: 2F2F2F
*/
@font-face {
    font-family: 'Comfortaa';
    src: url('src/fonts/Comfortaa-Regular.ttf') format('truetype');/*safari, android, ios*/
}
@font-face {
    font-family: 'JetBrainsMono';
    src: url('src/fonts/JetBrainsMono-Regular.ttf') format('truetype');/*safari, android, ios*/
}
@font-face {
    font-family: 'JetBrainsXLight';
    src: url('src/fonts/JetBrainsMono-ExtraLight.ttf') format('truetype');/*safari, android, ios*/
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    overscroll-behavior: none;
}

/* Misc. fonts and typeface */

h1 {
    font-family: Montserrat, sans-serif;
    padding:0;
    margin:0;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color:#262626;
    letter-spacing: 4px;
}
h2 {
    font-family: Montserrat, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

h3 {
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    font-family: 'JetBrainsMono';
    font-size: 1.2rem;
    letter-spacing: 1px;
}

a {
    color: rgb(73, 73, 73);
    text-decoration: none;
    font-weight: 500;
}

.content-1 {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 30px;
    text-transform: none;
    color: #353535;
}

.white {
    color: white;
}
.black {
    color:black;
}
.grey {
    color:#262626;
}
.pink {
    color: pink;
    text-shadow: 2px 3px 2px #5d5d5d96;
    /* -webkit-text-stroke: 1px #787878; */
}
body {
    margin: 0;
    padding:0;
    height: 100%;
    overflow-x: hidden;
    overscroll-behavior: none;
    background-color: #2F2F2F;
}

/* -------------------- the nav --------------------- */
.navbar {
    display: flex;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: rgb(73, 73, 73);
    background-color: rgba(211, 211, 211, 0.59);
    font-family: 'Comfortaa';
    transition: 1s all ease-in-out;
}

.logo {
    color: rgb(73, 73, 73);
    text-transform: uppercase;
    letter-spacing: 5px !important;
    font-size: 1.5rem !important;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 3rem;
}

.menu-icon .line {
    width: 25px;
    height: 3px;
    background-color: rgb(73, 73, 73);
    margin: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1rem;
}

.nav-menu {
    z-index: 100;
    display: flex;
    list-style: none;
    justify-content: space-around;
    /* width: 30%; */
    transition: display 1s ease-in-out, justify-content 1s ease-in-out, width 1s ease-in-out;
}

.nav-menu li {
    margin-left: 20px;
    list-style:none;
}

.nav-menu li:hover a {
    letter-spacing: 7px;
    font-weight: 1000;
}

.nav-menu a {
    display: block;
    color: rgb(73, 73, 73);
    padding: 0rem .5rem;
    text-wrap: nowrap;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 1rem;
    transition: letter-spacing .3s linear, font-weight .3s;
    -webkit-transition: letter-spacing .3s linear, font-weight .3s;
}

.nav-menu a:hover{
    color: pink;
    text-shadow: 0 0 10px #836469,
                 0 0 30px #b0848c,
                 0 0 80px #ffc0cb,
                 0 0 120px #ffc0cb,
                 0 0 200px #ffc0cb;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translate(100px, 0);
    }
    to {
        opacity: 1;
        transform: translate(0,0); 
    }
}


/* Responsive Styles */
@media screen and (max-width: 950px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 57px;
        right: 0;
        flex-direction: column;
        width: 38%;
        height: 60%;
        /* background-color: rgba(211, 211, 211, 0.59); */
        display: none;
        justify-content: start;
        align-items: center;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom-left-radius: 1rem;
        transition: 1s all ease-in-out;
    }
    

    .nav-menu.active {
        display: flex;
        box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(171, 171, 171, 0.057);
        animation: navLinkFade 0.5s ease forwards;

        li {
            /* opacity: 1; */
            padding-top: 2rem;
            padding-bottom: 2rem;
            transition: 1s all ease-in-out; /*this only works if menu open on resize*/
            animation-delay: 2s;
            animation: navLinkFade 1.5s ease forwards;
        }
        a {
            color: black;
        }
    }
    
    .menu-icon.active .line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }

    .menu-icon.active .line:nth-child(2) {
        display: none;
    }

    .menu-icon.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ------------------------------ end of nav ------------------------------- */

main {
    padding: 5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row {
    display: flex;
    flex-direction: row;
}
.col {
    display: flex;
    flex-direction: column;
}
.permCol {
    flex-direction: column;

}
/* .container {
    min-height: 700px;
    width: 100%;
} */

.header {
    display: flex;
    position: absolute;
    width: auto;
    height: auto;
    left: 2rem;
    top: 3rem;

    h1 {
        font-size: 4rem;
    }

    h3, h1 span {
        color: pink;
        text-shadow: 2px 3px 2px #5d5d5d96;
    }
}
.heading2 {
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: rgb(190, 190, 190);
    padding-bottom: 2rem;
    
    p {
        font-family: 'Comfortaa' !important;
        font-size: 1rem;
    }
    h1 {
        color: whitesmoke;
    }
    span{
        color: pink;
    }
    hr {
        width: 10%;
        display: inline-block;
    }
}


.img {
    display: flex;
    position: relative;
    background-size: contain;
    background-image: url(./src/img/profilePicMDblknWte.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.imgFrame {
    display: flex;
    position: relative;
    justify-content: space-around;
    width: 100%;
    padding: 1rem 0;

    img {
        border-radius: 2rem;
        width: 70%;
        filter: grayscale(80%);
    }
    img:hover {
        filter: none;
    }
}

.textBox {
    display: flex;
    color: rgba(255, 255, 255, 0.774);
    font-weight: 500;
    width: 60%;

    a {
        cursor: pointer;
        font-family: 'JetbrainsMono';
        color: pink;
        text-decoration: none;
    }
    a:hover {
        color:rgb(73, 73, 73);
    }
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'JetbrainsXLight';
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.774);
    
    ul {
        list-style-type: none;
        word-wrap: break-word;
    }
    li {
        padding: 0.5rem 3rem;
    }
    i {
        padding-right: 1rem;
        font-size: 1.5rem;
        color: pink;
    }
}

.glass {
    padding: 1.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(to bottom right, #bbbbbb40, rgba(252, 252, 252, 0.001));
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-radius: 2rem;
    border: 2px solid rgba(171, 171, 171, 0.057);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
}

.glassLight {
    padding: 1rem;
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-radius: 2rem;
    border: 2px solid rgba(171, 171, 171, 0.057);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
    background-color: rgba(254, 254, 254, 0.34);
}

.glassContainer {
    display: flex;
    position: relative;
    justify-content: space-around;
    align-items: end;
    margin:0;
    height: auto;
    width: 100%;
    background-color: rgba(211, 211, 211, 0.076);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-radius: 2rem;
    border: 2px solid rgba(171, 171, 171, 0.057);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
    padding: 2rem;

}

.glassThin {
    display: flex;
    position: relative;
    height: 620px;
    width: 100%;
    background-size: contain;
    background-color: rgba(211, 211, 211, 0.076);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 2rem;
    border: 2px solid rgba(171, 171, 171, 0.057);
    /* box-shadow: 0 0 80px rgba(0, 0, 0, 0.3); */
    box-shadow: inset 0 -50px 50px -40px pink;
    padding: 2rem; 
    margin:0;
}

.glassThick {
    height: min-content;
    background-color: rgba(211, 211, 211, 0.461);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    padding: 2rem;
    border-radius: 2rem;
    border: 2px solid rgba(171, 171, 171, 0.057);
    /* box-shadow: 0 0 80px rgba(0, 0, 0, 0.3); */
    box-shadow: inset 0 -50px 50px -40px pink;

}
.pinkBorder {
    border: 2px solid pink !important;
}

.spacer {
    height: 10rem;
    width: 100%
}
.icons{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-size: 2rem;

    a {
        text-decoration: none;
        color:pink;
        padding: 1rem;
        transition: 0.8s color ease-in-out;
    }

    a:hover {
        color:#262626;
    }
}

#mainPageIcons.icons {
    /* justify-content: none; */
    position: absolute;
    bottom: 0;
    
}
.containerL {
    display: flex;
    justify-content: left;
    width: 50%;
}

.locaInfo {
    padding: 0;
    display: flex;
    position: relative;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;

    h3 {
        color: #bbbbbb;
        letter-spacing: 1px;
    }
}

.containerR {
    display: flex;
    justify-content: right;
    width: 50%;
}
.emailForm {
    padding: 2rem;
    display: flex;
    position: relative;
    justify-content: space-around;
    border-radius: 2rem;
    background: linear-gradient(to bottom right, #bbbbbb40, rgba(252, 252, 252, 0.001));
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(171, 171, 171, 0.057);
    width: 100%;
    h1 {
        font-family: 'Comfortaa';
        color: rgb(210, 210, 210);
    }

    input, textarea {
        font-family: 'JetBrainsMono';
        box-shadow: -5px 0px 10px #666666a1 inset;
        background-color: rgba(255, 255, 255, 0.616);
        border: none;
        font-size: 1rem;
        border-radius: 1rem;
        text-decoration: none;
        padding: 1rem;
    }
}


.pinkButton {
    width: 8rem;
    display: flex;
    padding: 1rem;
    border: 2px solid pink;    
    font-family: 'Comfortaa';    
    font-size: 1rem;
    font-weight: 600;
    color:pink;
    text-shadow: inset 2px 5px rgb(53, 58, 58);
    backdrop-filter: blur(15px);
    background-color: transparent;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
    animation: pulseSubtle 1.5s infinite ease-in-out alternate;
}
.pinkButton:hover {
    background-color: pink;
    color: #262626;
}

.btnGroup {
    display: flex;
    justify-content: space-between;
}
#ctaButtons {
    display: flex;
    justify-content: space-around!important;
    align-items: center;
    height: 10%;
    width: 40%;
    position: absolute;
    bottom: 15rem;
    left: 2rem;
}

.section {
    padding: 1rem 0rem;
    margin: 2rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    a {
        display: flex;
        flex-direction: column;
        padding: 2rem 3rem;
        font-family: 'Comfortaa';
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    a:hover {
        color: pink;
    }
}

/*----------cards------------*/
.cardContainer {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 0% 0% 15% 0%;
}


.cards {
    display: flex;
    justify-content: space-between;
    z-index: 3;
    width: auto;
	flex-wrap: wrap;
    margin-left: .2rem;
    margin-right: .2rem;
}

.card {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
    border: 2px solid pink; 
    border-radius: 1rem;
    margin: 1rem 1rem;
    padding: 2rem;
    max-height: 15rem;
    width:20%;
    transition: transform 0.3s;
    color: pink;
    text-shadow: inset 2px 5px rgb(53, 58, 58);
    font-weight: bold;
    font-size: 1.5rem;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px) ;

    i {
        padding-bottom: 1rem;
    }
}

.card:hover {
    transform: translateY(-15px) !important;
}

#roundCard {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 0% 0% 15% 0%;
}

#roundCard .card {
    height: 10rem;
    width: 10rem;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 50%;
}

footer {
    display: flex;
    justify-content: center;
    position: relative; /**/
    padding: 4rem 5rem 1rem 5rem;

    p, a {
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 0.8rem;
        font-family: 'Comfortaa';
        text-decoration: none;
        transition: 0.5s color ease-in-out;
    }
    
    a {
        color: pink;
    }

    p, a:hover {
        color: #262626;
    }
}

/*--------------Background Bubbles--------------*/
#bubbles{
    /* background: pink; */
    background: linear-gradient(
    to right bottom,
    pink,
    rgba(255, 255, 255, 0)
    );
    position: fixed;
    border-radius: 50%;
    box-shadow: inset -8px -12px 12px #285e5413;
    z-index: -5;
    overflow: hidden;
}

.circle1 {
    top: -15%;
    right: -15%;
    height: 20rem;
    width: 20rem;
    filter:blur(.5rem);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.circle2 {
    top: -10%;
    left: 5%;
    height: 15rem;
    width: 15rem;
    filter:blur(1rem);
}
.circle3 {
    top: 5%;
    right: 15%;
    height: 10rem;
    width: 10rem;
    filter:blur(.7rem);
}
.circle4 {
    bottom: 30%;
    left: -1%;
    height: 10rem;
    width: 10rem;
    filter:blur(.3rem);
}
.circle5 {
    bottom: 16%;
    right: -5%;
    height: 20rem;
    width: 20rem;
    filter:blur(1rem);
}
.circle6 {
    bottom: 1%;
    left: 5%;
    height: 5rem;
    width: 5rem;
    filter:blur(1.5rem);
}
.circle7 {
    bottom: 10%;
    left: 25%;
    height: 15rem;
    width: 15rem;
    filter:blur(2rem);
}

/* carousel style */

.mySlides {
    display: none;
    max-height: 600px;
    min-height: 350px;
    overflow-y: scroll;
    border-radius: 2rem;

    img:hover {
        transform: translateY(-50px);
        transition: transform 0.3s ease-out;
    }
}

img {
    vertical-align: middle;
    transition: transform 0.3s ease-out;
    min-height: 350px;
}


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 3rem;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0.5rem;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: pink;
}

/* Caption text */
.text {
    color: #252525;
    background-color: pink;
    font-size: 1rem;
    font-family: 'JetbrainsXLight';
    padding: 1rem 1.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    /* box-shadow: inset 0 -50px 50px -40px rgba(43, 43, 43, 0.699); */
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

/* Number text (1/3 etc) */
.numbertext {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    color: #252525;
    background-color: pink;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 0.5rem;
    height: 35px;
    width: 55px;
    font-size: 1rem;
    position: absolute;
    font-family: 'Comfortaa';
    top: 0;
}


/* The dots/bullets/indicators */
/* .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
} */

/* .action{
  background-color: pink;
} */
/* Animations */
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
@keyframes pulseSubtle {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
  }
  @keyframes scale {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
  }
/* Media Querries */
/* laptop / M-L screens */
@media screen and (min-width: 951px) and (max-width: 1240px) {
    /* #navMenu {
        width: 60%;
    } */

}
/********  tablet / notebook */
@media screen and (min-width: 541px) and (max-width: 950px) {
    body {
        overflow-x: hidden;
    }

    main {
        justify-content: center;
        align-items: center;
    }
    
    #contact .header {
        top: 7rem;
        left: -5rem;
    }
    .header{
        position: absolute;
        transform: rotate(90deg);  
        top: 9rem;
        left: -6rem;

        h1 {
            font-size: 3rem;
        }
    } 
    .containerL{
        padding-bottom: 4rem;
        
        hr {
            margin: 1rem 0;
            width: 60%;
        }
    }
    .containerR, .containerL {
        width: 100%;
        padding-left: 5rem;
    }
    
    
    #about .textBox {
        width: 100%;
        padding-left: 5rem;
    }

    #mainPageIcons.icons {
        font-size: 1.5rem;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 0;

    }

    .row {
        display: flex;
        flex-direction: column;
    }

    #ctaButtons {
        bottom: 5rem;
        width: 62%;

        .pinkButton {
            background-color: pink;
            color: #262626;
        }
        .pinkButton:hover {
            color: pink;
            background-color: transparent;
        }
    }
    #intro2 .cards {
        justify-content: center;

        .card {
            width: 30%;
        }
    }
}
/* mobile */
@media screen and (min-width: 350px) and (max-width: 540px) {
        
    body {
        overflow-x: hidden;
    }
    

    #mainPageIcons.icons {
        font-size: 1.5rem;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 0;

    }
    
    .header {
        top: 2rem;
        left: 0.5rem;

        h1{
            font-size: 2rem;
        }
    }

    .containerL{
        padding-bottom: 4rem;
        justify-content: center;
        /* align-items: center; */
        
        hr {
            margin:0;
            width: 60%;
            /* height: 40%; */
        }
    }
    .containerR, .containerL {
        width: 100%;
    }

    #about .textBox {
        width: 100%;
        padding-top: 3.5rem;
    }

    .row {
        display: flex;
        flex-direction: column;
    }
    .icons {
        font-size: 1.5rem;
    }
    #ctaButtons {
        width: 90%;
        justify-content: space-between;
        bottom: 2rem;
        left: 0;

        .pinkButton {
            background-color: pink;
            color: #262626;
        }
        .pinkButton:hover {
            color: pink;
            background-color: transparent;
        }
    }
    #intro2 .card {
        width: 40%;
    }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}
