/* Colors for reference [light, main, darker]
Services: #E2F3DC #6CC551 #53AA39
Speaking: #F6E6E9 #CA2E55 #B5294C
Testimonials/Blog: #DCE8EE #508AA8 #406E85
About Me: #FFE7CC #FF8800 #CC6D00
Contact Me: #D9DAE2 #40476D #2D324D
*/

/* Font */
@font-face{
    font-family: 'SeoulNamsan';
    font-weight: normal;
    font-style: normal;
    src: url(assets/fonts/SeoulNamsanVertical-Regular.ttf) format("truetype");
}

@font-face {
    font-family: 'SeoulNamsan-bold';
    font-weight: bold;
    font-style: normal;
    src: url(assets/fonts/SeoulNamsan-Bold.ttf) format("truetype");
}

@font-face {
    font-family: 'SeoulNamsan-bolder';
    font-weight: bolder;
    font-style: normal;
    src: url(assets/fonts/SeoulNamsan-ExtraBold.ttf) format("truetype");
}

@font-face {
    font-family: 'SeoulNamsan';
    font-weight: light;
    font-style: normal;
    src: url(assets/fonts/SeoulNamsan-Light.ttf) format("truetype");
}

/* Color Scheme Styles */
.pink {
    color: #ca2e55;
}

.highlight-pink {
    /* Used as highlight/hover color */
    color: #b5294c;
}

.background-pink {
    /* Most often used as a background */
    background-color: #F6E6E9;
}

.indigo {
    color: #40476D;
}

.highlight-indigo {
    /* Used as highlight/hover color */
    color: #2D324D;
}

.background-indigo {
    /* Most often used as a background */
    background-color: #D9DAE2;
}

.blue {
    color: #508AA8;
}

.highlight-blue {
    /* Used as highlight/hover color */
    color: #406e88;
}

.background-blue {
    /* Most often used as a background */
    background-color: #DCE8EE;
}

.orange {
    color: #FF8800;
}

.highlight-orange {
    /* Used as highlight/hover color */
    color: #CC6D00;
}

.background-orange {
    /* Most often used as a background */
    background-color: #FFE7CC;
}

.green {
    color: #6CC551;
}

.highlight-green {
    /* Used as highlight/hover color */
    color: #53AA39;
}

.background-green {
    /* Most often used as a background */
    background-color: #E2F3DC;
}

/* Overall/Page Styles */
html {
    min-height: 100%;
    font-family: 'SeoulNamsan';
}

.website {
    padding-top: 3.5rem;
    color: black;
    font-family: 'SeoulNamsan';
    font-weight: normal;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 300px;
    display: flex; 
    flex-direction: column;
    margin: auto;
}

main{
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

/* Navigation Bar */
.navbar {
    font-family: 'SeoulNamsan-bolder';
    font-weight: bolder;
    background-color: white;
    display: flex;
}

.navbar-brand {
    display: block;
    color: #508AAB;
    text-align: center;
    padding: 15px 15px;
    text-decoration: none;
    font-size: 1.25em;
    justify-content: flex-start;
    align-items: center;
}

.navbar-brand:hover {
    color: #508AAB;
}

.navbar-nav {
    align-items: center;
    padding-right: 0.5rem;
}

.nav-link {
    color: #40476D;
    font-family: 'SeoulNamsan-bolder';
    font-weight: bolder;
    text-align: center;
    font-size: 1.25em;
    padding: 1rem;
    align-items: center;
}

.nav-link:hover {
    color:#40476D;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(64, 71, 109, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-button {
    padding-left: 0.5rem;
}

.contact-me {
    color: white;
    background-color: #40476D;
    padding:0.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 1em;
    font-size: 1.5em;
    border: none;
    white-space: nowrap;
}

.contact-me:hover {
    color: white;
    background-color: #2D324D;
}

@media screen and (max-width:990px) {
    .navbar-collapse {
        background-color: #DCE8EE;
        padding: 2rem;
    }
    .nav-link {
        padding: 1rem;
    }
    .nav-button{
        margin-top: 1rem;
    }
}

.navbar-toggler-icon {
    color: #2D324D;
}

.navbar-toggler-icon::after {
    border: #40476D;
}

/* Navigation Bar Animation styles */
.hover-underline-animation {
    display: inline-block;
    position: relative;
    text-decoration: none;
}
  
.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    transform: scaleX(0);
    height: 2px;
    bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    background-color: #40476D;
    transform-origin: bottom center;
    transition: transform 0.25s ease-out;
}
  
.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom center;
    text-decoration: none;
}


/* Home Page Stylings */
.opener {
    width: 100%;
}

.greetings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 6em;
    padding-top: 2rem;
}

.wave {
    width: 500px;
    margin-top: -50px;
    margin-bottom: -100px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.opt-box {
    padding: 2rem;
    font-size: 1em;
    border-radius: 0.5em;
    border: none;
    text-align: center;
    flex: 1 0 41%;
    margin: 1rem;
    min-width: 200px;
    color: black;
    justify-items: center;
}

.opt-box:hover {
    text-decoration: none;
    color: black;
}

.highlight-box{
    width: 100%;
    display: flex;
}

.highlight {
    border-radius: 1em;
    padding: 0.45rem 2rem;
    width: fit-content;
    color: white;
    justify-content: center;
    font-family: 'SeoulNamsan';
    font-weight: bold;
}

.highlight-description {
    font-size: 1.2em;
}

.pink-back {
    /* Used on Homepage */
    background-color: #ca2e55;
}

.blue-back {
    /* Used on Homepage */
    background-color: #508AA8;
}

.green-back {
    /* Used on Homepage */
    background-color: #6CC551;
}

.orange-back {
    /* Used on Homepage */
    background-color: #FF8800;
}

/* General Content-related CSS */
.section {
    padding-left: 7rem;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
}

.content-box {
    font-size: 1.5em;
    color: black;
    overflow: hidden;
    border-radius: 0.5em;
    padding: 2rem;
}

.page-title {
    padding-top: 2.5rem;
    padding-left: 3rem;
    font-size: 5.5em;
    font-family: 'SeoulNamsan-bolder';
    font-weight: bolder;
}

.section-heading {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 6rem;
    font-size: 2.25em;
    font-family: 'SeoulNamsan-bolder';
    font-weight: bold;
}

.divider {
    padding: 2rem;
}

.wrapper {
    padding-top: 1rem;
    padding: 0.5rem;
    border-radius: 0.5em;
    height: fit-content;
}

.wrapper-text {
    padding: 2rem;
    font-family: 'SeoulNamsan';
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

.calendly-inline-widget {
    min-width: 200px;
    height: 1200px;
}

@media screen and (min-width:1205px) {
    .calendly-inline-widget {
        height: 700px;
    }
}

.small-text {
    font-family: 'SeoulNamsan';
    font-weight: light;
    font-size: 1.2em;
    text-align: center;
}

h1 {
    font-family: 'SeoulNamsan';
    font-weight: bolder;
    font-size: 1.5em;
}

h2{
    font-family: 'SeoulNamsan';
    font-weight: bold;
    font-size: 1.5em;
}

iframe > html > body {
    overflow: visible;
}

.intro {
    padding-bottom: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    color: black;
    font-family: 'SeoulNamsan';
    font-weight: normal;
    font-size: 1.5em;
}

.link {
    text-decoration: none;
    color: #40476D;
}

.link:hover {
    text-decoration: none;
    color: #2D324D;
}

.otter {
    width: 300px;
    position: relative;
    margin-top:-200px;
    left: 10px;
    margin-bottom: -80px;
}

.growth {
    position: relative;
    float: right;
    width: 170px;
    margin-right: 40px;
    margin-top: -170px;
}

.working {
    position: relative;
    float: right;
    width: 150px;
    margin-top: -50px;
    margin-bottom: -50px;
    margin-right: 100px;
}

/* Table-related CSS */
table {
    background-color: #F6E6E9;
    color: black;
    font-size: 1.25em;
    width: 100%;
    border-radius: 0.5em;
    padding-left: 2rem;
    padding-right: 2rem;
}

.past-events{
    padding-left: 7rem;
    padding-right: 4rem;
    padding-top: 1rem;
}

th {
    border-bottom: 1px solid #ca2e55;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-family: 'SeoulNamsan';
    font-weight: bold;
}

td {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1.5rem;
    text-align: left;
}

@media only screen and (max-width: 760px), 
(min-device-width: 768px) and (max-device-width: 1024px) {
    thead, tbody, table, th, td, tr {
        width: 100%;
        padding: 1rem;
        display: block;
    }

    .table-spacer, .table-header, th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1.5px solid #ca2e55;
    }

    td {
        border: none;
        position: relative;
        text-align: left;
    }

    td:before {
        position: relative;
        padding-right: 10px;
        width: 45%;
        white-space: nowrap;
        font-weight: bold;
    }

    td:nth-of-type(1):before {
        content: "event:"
    }
    td:nth-of-type(2):before {
        content: "date:"
    }
    td:nth-of-type(3):before {
        content: "title:"
    }
    td:nth-of-type(4):before {
        content: "assets:"
    }
}

.tuna {
    position: relative;
    float: right;
    margin-top: -120px;
    z-index: 1;
    width: 300px;
    margin-left: -50px;
}

/* Form-related CSS */
.form-container {
    font-size: 24px;
    padding-left: 7rem;
    padding-right:4rem;
    justify-content: center;
}

.description {
    font-size: 24px;
    padding-bottom: 1rem;
    align-self: center;
    text-align: center;
}

.form-box {
    padding:1.5rem;
    border-radius: 0.5em;
    word-wrap: break-word;
    min-width: 400px;
    align-self: center;
    font-family: 'SeoulNamsan';
}

label {
    padding-bottom: 0.5rem;
}

input[type=text], textarea {
    width: 100%;
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid white;
    border-radius: 0.5em;
    box-sizing: border-box;
    resize: vertical;
}

button[type=submit] {
    /*this is for the speaking page only*/
    background-color: #ca2e55;
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5em;
    cursor: pointer;
    float: right;
}

button[type=submit]:hover {
    /*this is for the speaking page only*/
    background-color: #b5294c;
}

button[type=submit-blue] {
    /*this is for the contact-me page only*/
    background-color: #40476d;
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5em;
    cursor: pointer;
    float: right;
}

button[type=submit-blue]:hover {
    /*this is for the contact-me page only*/
    background-color: #2D324D;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 0.5rem;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 0.5rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
}

.f-row:after {
    content: "";
    display: table;
    clear:both;
}


@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit]{
        width: 100%;
        margin-top:0;
    }
}

/* Carousel Stylings */
.carousel-container {
    padding-left: 7rem;
    padding-right: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
}

.swiper-outside {
    border-radius: 0.5em;
    padding: 1.5rem;
    width: 100%;
}

.button-spacer {
    padding: 0.5rem;
}


.swiper {
    border-radius: 0.5em;
    height: 10rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 250px;
    text-align: center;
    border-radius: 0.5em;
}

img {
    width: 250px;
    overflow: hidden;
    border-radius: 0.5em;
    height: 100%;
}

.testimonial {
    height: 20rem !important;
}

.words {
    padding-left: 1rem;
    padding-right: 1rem;
}

.swiper-button-prev {
    padding: 2rem;
    border-radius: 1.5em;
    color:white;
}

.swiper-button-next {
    padding: 2rem;
    border-radius: 1.5em;
    color:white;
}

.swiper-pagination-bullet-active {
    background-color: rgb(63, 63, 63);
}

/* Footer Business */
footer {
    bottom: 0%;
    height: 4.7em;
    width: 100%;
}

.footer {
    display: block;
    height: 4.7em;
    background-color: #508AA8;
    width: 100%;
    padding: 1rem;
    color: white;
    align-items: center;
}

.socials {
    float: left;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
}

.fa-linkedin {
    color:white;
    padding: 0.5rem;
    border-radius: 40%;
    align-items: center;
}

.fa-linkedin:hover {
    color: white;
    background-color: #406e88;
    text-decoration: none;
}

.fa-calendar {
    color: white;
    padding: 0.5rem;
    border-radius: 40%;
    align-items: center;
}

.fa-calendar:hover {
    color: white;
    background-color: #406e88;
    text-decoration: none;
}

.designed {
    float: right;
    font-size: 0.875em;
    text-align: center;
    padding-right: 0.5rem;
}

.sebbi {
    text-decoration: none;
    color:white;
}

.sebbi:hover {
    text-decoration: none;
    color: #81D8D0;
}

/* General Responsiveness of Overall Website */
@media screen and (max-width: 600px) {
    main {
        margin: 0 !important;
    }
    body, .description, .intro, .section .content-box, h1, h2, ul, li {
        font-size: 1em !important;
    }
    .past-events, .carousel-container, .form-container, .section, .options, .page-title, .section-heading, .intro {
        padding-left: 2rem !important;
        padding-right: 2rem  !important;
    }
    .wrapper {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .page-title {
        padding-top: 1rem !important;
        font-size: 2.8em !important;
    }
    .section-heading {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        font-size: 2rem !important;
    }
    .content-box, .divider {
        padding: 1rem !important;
    }
    .otter {
        margin-left: -50px !important;
    }
    .wave {
        max-width: 300px;
    }
    .tuna {
        width: 220px;
    }
    .growth {
        width: 130px;
        margin-top: -130px;
    }
    .working {
        width: 100px;
        margin-top: -10px;
        margin-right: 50px;
    }
}