/* ---------------------------------------*/
/* BASE SETUP */
/* color: #2980b9 */
/* ---------------------------------------*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow: visible;

}

html {
    background-color: #FFF;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}


.clearfix {zoom: 1}
.clearfix:after {
    content: ' . ';
    clear: both;
    height: 0;
    visibility: hidden;
}

/* ---------------------------------------*/
/* REUSABLE COMPONENTS */
/* ---------------------------------------*/

.row {
    max-width: 1149px;
    margin: auto;
}

section {
    padding: 80px 1.6%;
}

i {
    color: #F9F9F9;
    font-size: 200%;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

img {
    object-fit: cover;
}

/*--------HEADINGS--------*/

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
}

h1 {
    font-size: 220%;
    color: #FFF;
    word-spacing: 4px;
    letter-spacing: 1px;
    font-weight: 100;
   
}

h2 {
    font-size: 200%;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-weight: 300;
}

h3 {
    font-size: 140%;
    text-align: center;
    margin-bottom: 40px;
}

h4 {
    text-align: center;
    margin-bottom: 20px;
}

h2:after {
    display: block;
    width: 100px;
    height: 2px;
    background-color: #FF9900;
    content: " ";
    margin: 0 auto;
    margin-top: 20px;


}

p {
    letter-spacing: 1px;
    word-spacing: 2px;
    font-weight: 300;
    line-height: 120%;
}

.btn {
  font-family: inherit;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  max-width: 240px;
  text-align: center;
  color: #fff;
  font-size: $font--sm;
  font-weight: $weight--bold;
  border: none;
  border-radius: 24px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  background-color: #FF9900;
  
}

.btn-disabled{
  background-color: #CCCCCC;
  
}

.btn:hover {
  background-color: #FFCC00;  
}

.btn-disabled:hover {
    background-color: #CCCCCC;
}

/* ---------------------------------------*/
/* HEADER */
/* ---------------------------------------*/

header {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))),url(img/background.jpeg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url(background.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 100vh;
    width: 100%;
}

.image-container {
    height: 100%;
    width: 100%;
    display: -webkit-flex; /* Safari 6.1+ */
    display: -ms-flexbox;  /* IE 10 */
    display: flex; /* Enable flexbox for easy centering */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
}


.logo {
  max-width: 500px; /* Set maximum width for responsiveness */
  height: auto; /* Maintain aspect ratio */
  opacity: 0.9; /* Optional: Adjust transparency */
}

.header-text {
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    padding-left: 50px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.main-nav {
    float:right;
    list-style: none;
    margin-top: 50px;
    margin-right: 20px;
    padding-top:  20px;
    padding-bottom:  20px;
    background-color: #CC3300;
    opacity: 0.7;
}

.main-nav li {
    display: inline-block;
    margin-right: 0px;
    font-weight: 100;
}

.main-nav li a:link,
.main-nav li a:visited {
    text-decoration: none;
    text-transform: uppercase;
    color: #FFF;
    font-size: 90%;
    padding: 15px;
    border-bottom: 3px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #FFCC00;
}

.sticky-nav {
    float:right;
    list-style: none;
    text-align: right;
    padding-top: 25px;
    padding-bottom: 15px;
    width: 100%;
    top: 0%;
    right: 0%;
    position: fixed;
    background-color: #FFF;
    opacity: 0.8;
}

.sticky-nav li {
    display: inline-block;
    margin-right: 2%;
}

.sticky-nav li a:link,
.sticky-nav li a:visited {
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 90%;
    padding: 8px;
    border-bottom: 3px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.sticky-nav li a:hover,
.sticky-nav li a:active {
    border-bottom: 2px solid #FF9900;
}

/* ---------------------------------------*/
/* ABOUT */
/* ---------------------------------------*/

.section-about {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.section-about img {
    border-radius: 50%;
    width: 20%;
    height: auto;
    margin: 0% 40% 3% 40%;
}

.section-about p {
    text-align: center;
    letter-spacing: 1px;
    word-spacing: 2px;
    line-height: 140%;
    margin: 0 5%;
}

/* ---------------------------------------*/
/* My Journey */
/* ---------------------------------------*/

.section-my-journey {
    background-color: #F9F9F9;
}

#my-journey-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    flex-wrap: nowrap;
    margin-left:1%;
    margin-right:1%;
    margin-bottom:20px;
}

#my-journey-container p {
    margin-right: 0;
}

#my-journey-container2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    margin-left:1%;
    margin-right:1%;
    margin-bottom:20px;
}

#my-journey-container2 p {
    margin-left: 0;
}

.section-my-journey p {
    margin: 0 1%;
    flex: 1;

}

#my-journey-image {
    flex: 0 0 50%; /* Prevents shrinking and growing */
    max-width: 50%;
}

#myjourney-movable-1-1 {

}

#myjourney-movable-1-2 {
    display: none;
}

#myjourney-movable-2-1 {

}

#myjourney-movable-2-2 {
    display: none;
}

/* ---------------------------------------*/
/* PROGRAMS */
/* ---------------------------------------*/

.projects-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 1%;
    margin-bottom: 20px;
}

.section-projects {
    background-color: #FFF;
}

.project-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    flex-wrap: nowrap;
    background-color: #F9F9F9;
    margin-left:1%;
    margin-bottom:20px;
    padding-bottom:  10px;
}

.project-box div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items: flex-start;
    overflow: hidden;
    flex: 1;
}

.project-box .btn {
    margin: auto;
    margin-top: 10px;
}

.project-box a {
    text-decoration: none;
}

.project-box img {
    flex: 0 0 50%; /* Prevents shrinking and growing */
    max-width: 50%;
}

.project-box p {
    margin: 0 5%;
    width:  100%;
    line-height: 1.2;
    margin-bottom: 0.3em;
}

.project-box h3 {
    height: 40px;
    text-align: center;
}

.project-box h4 {
    margin: auto;
    margin-bottom: 10px;
}


/* ---------------------------------------*/
/* FOOTER */
/* ---------------------------------------*/


footer {
    background-color: #FF9900;
    padding: 80px 0;
}

footer h2 {
    color: #F9F9F9;
}

footer p {
    color: #F9F9F9;
    text-align: center;
    padding-top: 40px;
}

.contact-list {
    list-style: none;
    margin: 0 30%;
}

.contact-list li {
    display: inline-block;
    text-decoration: none;
    width: 24%;
    text-align: center;
}

.ion-ios-email:hover,
.ion-ios-email:active {
    color: #2980b9;
}

.ion-social-whatsapp:hover,
.ion-social-facebook:active {
    color: #075E54;
}

.ion-social-facebook:hover,
.ion-social-facebook:active {
    color: #3b5998;
}

.ion-social-github:hover,
.ion-social-github:active {
    color: #000000;
}

.ion-social-instagram:hover,
.ion-social-instagram:active{
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
          /* Also define standard property for compatibility */
          background-clip: text;
  -webkit-text-fill-color: transparent;

}
