@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

nav {
    height: 50px;
    display: flex;
}

img {
    width: 100%;
}

p {
    line-height: normal;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.purple--text {
    color: #806fa7;
}

.nav__container {
    width: 100%;
    max-width: 100vw;
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background: linear-gradient(to right, black, #494d5f);
}

ul {
    display: flex;
}

li {
    list-style-type: none;
}

a {
    color: aliceblue;
}

.logo {
    width: 120px;
    scale: calc(35%);
}

.nav__link {
    margin-left: 16px;
    text-decoration: none;
    font-size: 20px;
    color: ;
    font-weight: bold;
    padding: 12px;
}

.nav__link:hover {
    text-decoration: underline;
}
.nav__link--contact {
    border: 2px solid #f3d4e7;
    border-radius: 8px;
    background-color: rgb(227, 196, 234);
    padding: 4px 8px;
    color: #806fa7;
    font-weight: 450;
}

.nav__link--primary:hover {
    text-decoration: none;
}

.btn__menu { 
background-color: transparent;
font-size: 32px;
text-align: center;
border: none;
color: #806fa7;
display: none;
}

.menu__backdrop {
    position: absolute;
    background-color:#494d5f;
    color: #d9eafb;
    top: 0;
    left: 0;
    right: 300px;
    bottom: 40px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 600ms ease; 
    opacity: 0;
    border-radius: 6px;
    visibility: hidden;
}

.menu--open .menu__backdrop {
    visibility: visible;
    opacity: 1;
}

.btn__menu--close {
    position: absolute;
    right: 20px;
    top: 10px;
    padding: 8px;
    color: rgb(218, 225, 234);
    transition: all 600ms ease; 
}

.menu__links {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.menu__link {
    color: #d9eafb;

}
.menu__list {
    padding: 32px 0;
}
  
.menu--open {
    max-height: 100vh;
    overflow: hidden;
}


#landing {
   background-color: #d9eafb; 
}

header {
    height: calc(100vh-80px);
}

.header__container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.header__description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 56px;
    color: rgb(61, 68, 74);
    margin-bottom: 24px;
    margin-top: 50px;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 28px;
    text-align: center;
    color: rgb(77, 82, 85);

}

.cruz__photo {
    border-radius: 10px;
    max-height: 850px;
}

button {
    cursor: pointer;
    background-color: #f0d1e5;
    color: #806fa7;
}

button:active {
    transform: translateY(1px);
}

.btn {
    background-color:#f0d1e5
    font-color: #806fa7;
    padding: 12px 24px;
    font-size: 20px;
    border-radius: 6px;
    border: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .1)
}

.header__img--wrapper {
    padding: 20px;
    z-index: 2;
}

.row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

.row__column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HIGHLIGHTS */

#highlights {
    position: relative;
    max-width: 100vw;
}
#ighlie {
    background: url(imgs/wave.svg);
    content: "";
    position: absolute;
    width: 101vh;
    height: 12vw;
    top: 1px;
    left: 0;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-100%);
    background-color: #f0d1e5;
}
#igh:after {
    background: url(imgs/wave.svg);
    content: "";
    position: absolute;
    width: 101vh;
    height: 12vw;
    top: 1px;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(100%);
    background-color: #f0d1e5;
}


.highlight__wrapper {
    display: flex;
    background-color: #f0d1e5; 
    flex-wrap: wrap;
}

.highlight {
    padding: 0 4px;
    width: calc(100% / 3);
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    margin-bottom: 16px;
}

.highlight__container {
    background-color: #f0d1e5;
}

.highlight__para {
    text-align: center;
    font-size: 16px;
    max-width: 350px;
}

.highlight__img {
    border: solid ;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 32px;
    margin-bottom: 24px;
}

.highlight__subtitle {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.section__title {
    background-color: #f0d1e5;
    padding-top: 16px;
}
.section2__title { 
    background-color: #d9eafb;
    transform: translateY(-10px);
}

/* FEATURES */

#features {
    padding-top: 8vw;
    background-color: #d9eafb;
}

.canvases {
    display: flex;
}

.canvas {
    width: 25%;
    padding: 16px;
}

.canvas__img {
   max-height: 420px;
   transition: all 300ms ease;
   border-radius: 10px;
   padding: 0 0 0 2px;
   box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.canvas__img--wrapper {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.canvas:hover .canvas__img {
    transform: scale(1.11);
}

.canvas__title {
    font: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.canvas__title:hover {
    text-decoration: underline;
    cursor: no-drop;
}

.canvas__rating {
    margin-bottom: 8px;
    color: #fabf2a;
}

.canvas__price--normal {
    text-decoration: line-through;
    padding-right: 6px;
    color: #777b8c;
}

/* PREFORMANCE ART */

.preform {
    max-width: 100%;
    display: flex;
    margin: 0 auto;

}
#preform .canvases {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
    gap:calc(50%); /* Optional: adds space between items */
   align-items: center;
   justify-content: center;
}

.preform__container {
    width: 100%;
    background-color: #f6d9e8;
}

.section3__title {
    padding-top: 30px;
}

.canvas__vid {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 800px;
   transition: all 300ms ease;
   border-radius: 10px;
   padding: 0;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}
.canvas:hover .canvas__vid {
    transform: scale(1.11);
}

.canvas__vid--wrapper {
    max-width: 100%;
    display: flex;
   width: 600px;
   padding: 4px 8px;
}

.canvas__vid--plays {
    padding-right: 6px;
    color: #777b8c; 
}

.vid__link {
    color: red;
    cursor: pointer;
    transform: scale(1.1);
    margin-left: 10px;
}

/* EXPLORE */

#explore {

    display: flex;
    flex-direction: column;
}

.explore__container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #d9eafb;
    
}

.about-me__picture {
    
}

.about-me__picture--mask {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 1);
   margin-top: 12px;
   margin-bottom: 2px;
   animation: animate-profile-picture 700ms 300ms backwards;
   cursor: pointer;
   animation: pop-animation 2s 600ms backwards;
   
   
}

@keyframes animate-profile-picture {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }

}
/* The actual animation sequence */
@keyframes pop-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* The class we will add via JavaScript */
.animate-pop {
  animation: pop-animation .7s ease-out;
}

.section4__title {
    margin-top: 20px;
}
.explore__button {
    background-color: #f0d1e5;
    color: #777b8c;
    border-radius: 8px;
    padding: 8px 4px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

/* footer */

footer {
    background-color: #f3d4e7;
    height: 100%;
    margin-bottom: 10px;
}

.footer__logo {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto 5px auto;
    cursor: pointer;
    animation: pop-animation 2s 600ms backwards;
  
    border-radius: 50%;
    overflow: hidden;

}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer__link,
.footer__copyright {
    color: #806fa7;
}

.footer__list {
    margin: 6px 20px 10px 0;
    
}

.footer__copyright {
 margin-bottom: 16px;
 display: flex;
 align-items: center;
 
}
.footer__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer__link {

}
@media (max-width: 768px) {
    .header__description {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 40px;
    }
    h2 {
       font-size: 26px; 
    }
    button {
        font-size: 18px;
    }
    .book {
        width: 50%;
    }
    .highlight {
        width: 100%;
        margin-bottom: 18px;
    }
    .highlight:not(:last-child) {
        margin-bottom: 24px;
    }
    .features {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .nav__links {
        display: none;
    }
    .btn__menu {
        display: block;
    }
}

