/*
Gray 1 #F6F5F3
Gray 2 #E4E3E2
Gray 3 #D5D4D1
Gray 4 #9E9B94
Gray 5 #6E6A63
Gray 6 #3C3A36

Red #FF5B56

Yellow #F3CF58

Orange #FF9E61
*/

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

h1, h2, h2, h3, h4, h5, p, a, em {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  color: #3C3A36;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

p.tag {
  font-size: 1rem;
}

.button {
  display: block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
  border-radius: 6px;
  color: white;
  background-color: #F35858;
}

.button.disabled {
  background-color: #d3d3d3; /* Muted background */
  color: #6c6c6c; /* Darker muted text */
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none; /* Prevents interaction */
}

/* NAVBAR */

.container {
  width: 90%;
  margin: 0 auto;
  border: 0px solid red;
}

header {
  background-color: hsla(0, 0%, 100%, 0);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.white{
  /*background-color: hsla(0, 0%, 22%, 1);*/
  background-color: #3C3A36;
  position: fixed;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(105,105,105,1);
  -moz-box-shadow: 0px 3px 7px 0px rgba(105,105,105,1);
  box-shadow: 0px 3px 7px 0px rgba(105,105,105,1);
  width: 100%;
  z-index: 100;
}

header::after {
  content: '';
  display: table;
  clear: both;
}

.logo.small {
  height: 100px;
  float: left;
  margin: 0;
  padding: 15px 0 15px 0;
  display: none;
}

nav {
  float: right;
  margin: 0;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-left: 60px;
  padding: 35px 0;
  position: relative;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
}

nav a:hover{
  color: #DC6464;
}

nav a::before{
  content: '';
  display: block;
  height: 3px;
  width:  0%;
  background-color: white;
  position: absolute;
  top: 30%;
  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}

nav ul.burger {
  display: none;
  margin-right: 30px;

}

.fa-bars {
  color: white;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2rem;
}

/* MENU TRAY */

.menu-tray {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  z-index: 500;
  background-color: rgba(0, 0, 0, .95);
  height: 0px;
  padding-top: 0vh;
  left: 0;
  top: 0;
  margin: 0 auto;
  display: block;
  transition: all ease-in-out 250ms;
}

#menu-list {
  display: none;
}

.menu-tray ul {
  margin: 0 auto;
  text-align: center;
}

.menu-tray li {
  color: white;
  list-style: none;
  padding-top: 30px;
}

.menu-tray li a {
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 36px;
  color: white;
}

.menu-tray li i {
  padding-left: 80%;
  font-size: 30px;
  padding-bottom: 10vh;
  cursor: pointer;
}

/* HERO */

.hero {
  width: 100%;
  height: 99vh;
  background-color: hsla(40,5%,22%,1);
  background-image: url(../images/lucas-bg-wide.png);
  background-position: right;
  background-size: cover;
}

.hero .overlay {
  width: 100%;
  height: 100%;
  background: rgb(60,58,54);
  background: linear-gradient(69deg, hsla(40,5%,20%,1) 0%, hsla(40,5%,20%,0.9808298319327731) 28%, hsla(40,5%,20%,.8) 100%);
  margin: 0 auto;
}


.overlay .container {
  border:;*/
  width: 80%;
  height: 75%;
  margin: 0 auto;
  position: relative;
  top: 20%;
  max-width: 1000px;
}

.hero .img-wrapper{
  width: 33%;
  height: 233px;
  background-color: ;
  margin: 0;
  padding: 0;
  float: left;
  position: relative;
}

.hero img {
  width: 90%;
  position:absolute;
  bottom: 0;
  margin-top: 2rem;
}

.hero .h1-wrapper {
  height: 233px;
  width: 67%;
  background-color:   ;
  position: relative;
  float: right;
}

.hero h1 {
  color: white;
  /*display: inline-block;
  margin-top: 84px;
  margin-left: 20px;*/
  margin: 0;
  font-size: 3rem;
  font-weight: 200;
  position: absolute;
  bottom: 0;
}

.hero h1 span {
  color: #F3CF58;
  font-weight: 400;
}

.hero h3{
  color: white;
  clear: left;
  font-weight:200;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.03em;
  display: block;
  padding-top: 5%;
}

.hero .arrow {
  width: 60px;
  display: none;
  margin: 8rem auto 0;

  position: static;
  padding-top: 3%;
}

/* CASE STUDY CARDS */

section.projects {
  background-color: E5E5E5;
}

.project {
  display: flex;
  flex-direction: row;
  height:480px;
  margin: 100px auto;
  border-radius: 8px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 1400px;
}

.project .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem;
  width: 35%;
  background-color:#FBFAF8;
  border-right: 1px solid #d3d3d3;
}

.project .left .button {
  width: 100%;
  border: none;
}

.project .right {
  width: 65%;
  height: 100%;
  padding: 1rem 0 .5rem;
  background-color: hsla(34, 15%, 90%, .2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: ;
  float: right;
  overflow: hidden;
  position: relative;
}

.project .right .container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: ;
  height: 100%;
  width: 90%;
  position: relative;
  text-align: center;
}

.project h1 {
  color: #393939;
  margin: 0 0 10px 0;
}



.project p.tag {
  font-size: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}

.project p {
  margin: 0 0 20px 0;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2rem;
}



.projects .project .right .rect-body {
  height: 200px;
  width: 400px;
  background-color: hsla(34, 32%, 90%, .6);
  border-radius: 100px;
  position: absolute;
  top: -40px;
  left: -100px;
}

.projects .project .right .ball {
  height: 300px;
  width: 300px;
  background-color: hsla(34, 32%, 90%, .6);
  opacity: 1;
  border-radius: 200px;
  position: absolute;
  bottom: -40px;
  right: -100px;
}

.project .right .phone1 {
  height: 90%;
  position: absolute;
  top: 5%;
}

.project .right .phone1.izq {
  left: 5%;
}

.project .right .phone1.der {
  right: 5%;
}

.project .right .phone2 {
  height: 100%;
  margin: 0 auto;
  /*-webkit-box-shadow: 0px 3px 7px 0px rgba(105,105,105,1);
  -moz-box-shadow: 0px 3px 7px 0px rgba(105,105,105,1);
  box-shadow: 0px 3px 7px 0px rgba(105,105,105,1);
  */
}

#fs-project .right {
  padding: 4rem;
}

#fs-project .right .container{
  padding: 2rem;
  background-color: hsla(0,0%,0%,.5);
}

#fs-project .right .container div{
  padding: 2rem;
  width: 100%;
  border: 4px solid black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#fs-project .right .container div h3 {
  color: white;
}

#fs-project .button, #event-comparison .button {
  background-color: hsla(197,80%,48%,1);
}

#event-comparison {

}

/* CONTACT SECTION */

.home .contact {
  padding: 4rem;
  background-color: #f5f5f5;
}

.home .contact .container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home .contact .container h2 {
  margin: 0 0 10px 0;
}

.home .contact a {
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  border-radius: 6px;
  color: white;
  background-color: #F35858;
  margin: 2rem 0 0 0;
  padding: 16px;
}

/* FOOTER */

.footer {
  height: 80px;
  display: block;
  background-color: #3C3A36;
}

.footer .container {
  width: 95%;
  height: 100%;
}

.footer .details {
  width: 50%;
  height: 100%;
  float: left;
}

.footer .social {
  width: 50%;
  height: 100%;
  float: right;
}

.footer .details div {
  padding: 0;
  margin-top: 30px;
  background-color: ;
}

.footer .details div p {
  color: #f5f5f5;
  font-weight: 200;
  line-height: 1.25rem;
}

.footer .details img {
  height: 40px;
  margin: 20px 20px 0px 10px;
  float: left;
}

.footer .social .icons {
  padding-top: 20px;
  text-align: right;
}

.footer .social .icons i{
  font-size: 2.25rem;
  color: white;
  line-height: 2.75rem;
  margin-left: 40px;
}






/*screens 1025-1280 /// big landscape tablets, laptops, and desktops */
@media only screen and (max-width: 1280px) {
  .hero h1 {
    font-size: 3.7vw;
  }
  .hero h3 {
    font-size: 2.4vw;
  }

  .project .right .phone1.izq {
    left: 0;
  }

  .project .right .phone1.der {
    right: 0;
  }
}

/*screens 961 - 1024 /// tablet, landscape iPad, lo-res laptops ands desktops */
@media only screen and (max-width: 1024px) {

  .hero {
    height: 600px;
  }

  .hero .h1-wrapper, .hero .img-wrapper {
    height: 180px;
  }

  .footer .details div {
    margin-top: 20px;
  }

}

/*screens 769-960 /// portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
@media only screen and (max-width: 960px) {

  .hero {
    height: 960px;
    background-color: black;
    background-image: none;
    background-position: right;
    background-size: cover;
  }

  .hero .img-wrapper {
    width: 300px;
  }

  .hero .h1-wrapper {
    float: left;
    width: 100%;
    height: 50px;
  }

  .hero h1 {
    font-size: 5vw;
    top: 0;
    bottom: ;
  }

  .hero h3 {
    font-size: 2.4vw;
    clear: both;
    padding-top: 15%;

  }

  nav ul {
    display: none;
  }

  nav ul.burger {
    display: block;
  }

  .project .right {
    width: 50%;
  }

  .project .left {
    width: 50%;
  }

  .project .right .phone1 {
    display: none;
  }

}

/*screens 641-768 /// portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide */
@media only screen and (max-width: 768px) {
  .hero .img-wrapper {
    width: 60%;
  }
  .overlay .container {
    top: 20%;
  }

  .hero {
    height: 95vh;
    background-color: black;
    background-image: none;
    background-position: right;
    background-size: cover;
  }

  .hero h1 {
    font-size: 5.3vw;
    top: 50%;
    bottom: ;

  }

  .hero h3 {
    font-size: 4vw;
    clear: both;
    padding-top: 20%;
  }

  .hero .arrow {
    width: 50px;
    display: block;
    margin: 8rem auto 0;
    position: static;
    padding-top: 10%;
  }

  .project .right {
    width: 50%;
  }

  .project .left {
    width: 50%;
  }

  .footer {
    height: 160px;
    background-color: ;
  }

  .footer .container {
    text-align: center;
  }

  .footer .details {
    width: 100%;
    height: 50%;
    background-color: ;
    margin: 0 auto;
    display: inline-block;
    padding-left: 10%;
    padding-right: 10%;
  }

  .footer .details div {
    margin-top: 30px;
  }

  .footer .social {
    width: 100%;
    background-color: ;
    height: 50%;
    text-align: center;
  }

  .footer .social .icons{
    text-align: center;
    padding-top: 0;
  }

  .footer .social .icons i{
    margin: 0px 20px;
  }

  .footer .details img {
    display: none;
  }



}



/*screens 481-640 /// portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide */


/*screens 320-480 /// smartphones, iPhone, portrait 480x320 phones */
@media only screen and (max-width: 480px) {
  .hero .img-wrapper {
    width: 100%;
  }

  .hero .img-wrapper img {
    width: 100%;
    margin: 0 auto;
  }
  .overlay .container {
    top: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .hero {
    height: 95vh;
    background-color: black;
    background-image: none;
    background-position: right;
    background-size: cover;
  }

  .hero h1 {
    font-size: 1.5rem;
    top: 50%;
    padding: 1rem 0 0;
  }

  .hero h3 {
    font-size: 1rem;
    margin-top: 20px;
    padding-top: 4rem;
  }

  .hero .arrow {
    padding-top: 1rem;
  }

.project {
  height: auto;
}
  .project .right {
    display: none;
  }

  .project .left {
    width: 100%;
  }

  .footer .details div {
    margin-top: 20px;
  }

  .footer .details div p {
    line-height: 1.75rem;
  }

  .footer .social .icons{
    text-align: center;
    padding-top: 20px;
  }

  .indented-list {
    padding-left: 40px; /* Adjusts the indentation for the whole list */
  }

  .indented-list li {
    list-style-position: outside; /* Ensures bullet points stay outside the text */
    margin-bottom: 10px; /* Adds spacing between list items */
  }


}

/*

@media (min-width:320px)  {  smartphones, iPhone, portrait 480x320 phones  }
@media (min-width:481px)  {  portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide.  }
@media (min-width:641px)  {  portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones  }
@media (min-width:961px)  {  tablet, landscape iPad, lo-res laptops ands desktops  }
@media (min-width:1025px) {  big landscape tablets, laptops, and desktops  }
@media (min-width:1281px) {  hi-res laptops and desktops  }

@media (max-width:480px)  {  smartphones, iPhone, portrait 480x320 phones  }
@media (max-width:640px)  {  portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide.  }
@media (max-width:960px)  {  portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones  }
@media (max-width:1024px)  {  tablet, landscape iPad, lo-res laptops ands desktops  }
@media (max-width:1280px) {  big landscape tablets, laptops, and desktops  }
@media (everything else will be) {  hi-res laptops and desktops  }

*/
