/* hero */
section.hero-card{
    /* border:1px solid purple; DEBUG ONLY */
    width: 100%;
    max-width: 1024px;
    height:100%;
    margin:auto;
    margin-top: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:15px;
    align-items: center;
}

div.left-side-hero{
    /* border: grey solid 1px;  */
    flex:1 0 0;
    display: flex;
    flex-direction: column;
}

h1.hero-title {
    /* border:1px solid green; DEBUG ONLY */
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
    display: block;
    flex:1;
    margin:0;
    align-content: center;
    color:#C79DA3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

p.hero-subtitle {
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    flex:0;
    margin:0;
    margin-top:15px;
    align-content: center;
    color: #58524B;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
}

div.buttons{
    /* border:solid pink 1px; debug only */
    display: flex;
    flex:1;
    margin:0;
    margin-top:30px;
    justify-content:space-around;
    max-height: max-content;
    flex-wrap: wrap;
    gap:5px;
}

a.red-click {
    /* border:1px solid green; DEBUG ONLY */
    border:none;
    background-color: #B76E60;
    border-radius: 100px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #FDF6F0;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.2;
    transition: color 0.2s ease;
    flex:0 1 1;
    height: 40px;
    width: 250px;
    text-decoration: none;
    text-align: center;
    align-content: center;
}

div.profile-picture {
    /* border:1px solid gray; DEBUG ONLY */
    border: 15px solid #D9B87D;
    height: 340px;
    width: 300px;
    flex: 0 1 auto;
    border-radius: 200px 100px 200px 0px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* pseudo-class */
a.red-click:hover {
    /* border:#D9B87D solid 1.5px; */
    transition: color 0.2s ease;
    transform:scale(1.01);
}
a.red-click:active {
    background-color:#D9B87D;
    transform: scale(0.99);
    transition: color 0.2s ease;
}

.profile-picture img:hover {
    transform:scale(1.01);
}

/* @media */
@media (max-width: 600px){
    section.hero-card{
        flex-direction: column;
        align-items: center;
    }
    h1.hero-title, p.hero-subtitle{
        text-align: center;
    }
}

/* container - 1 */
section.container-one {
    /* border:1px solid red; DEBUG ONLY */
    margin-top:120px;
    background-color: #C79DA3;
    border-radius: 100px 100px 0px 0px;
    padding:60px;
    box-shadow: 0 -5px 8px -3px rgba(0,0,0,0.1); 
}

div.cards-container {
    /* border:1px solid purple; */
    width: 100%;
    max-width: 1024px;
    height:100%;
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 120px;
    gap: 25px;
    justify-content: space-around;
}

h2.cards-title{
    /* border:grey 1px solid; */
    color: #FDF6F0;
    display: block;
    justify-content: center;
    align-content: center;
    text-align: center;
}

article.card-one {
    /* border:1px solid gray; DEBUG ONLY */
    flex:1 1 200px;
    border-radius: 50px;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:15px; 
    background-color: #FDF6F0;
    max-width: 250px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
article.card-one div{
    /* border:1px solid green; DEBUG ONLY */
    height: 60px;
    width: 60px;
    align-content: center;
}
#icon-one {
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}
article.card-one h3{
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    margin:0;
    flex:1;
    margin-top:5px;
    text-align: center;
    align-content: center;
    color: #58524B;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    max-height: 60px;
}
article.card-one p{
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    margin:0;
    flex:1;
    margin-top:5px;
    text-align: center;
    align-content: flex-start;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 300;
    line-height: 1.6;
    color: #58524B;
}


article.card-two {
    /* border:1px solid gray; DEBUG ONLY */
    flex:1 1 200px;
    background-color: #FDF6F0;
    border-radius: 50px;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:15px;
    max-width: 250px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
article.card-two div{
    /* border:1px solid green; DEBUG ONLY */
    height: 60px;
    width: 60px;
    align-content: center;
}
#icon-two {
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}
article.card-two h3{
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    margin:0;
    flex:1;
    margin-top:5px;
    text-align: center;
    align-content: center;
    color: #FDF6F0;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: #58524B;    
    max-height: 60px;

}
article.card-two p{
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    margin:0;
    flex:1;
    margin-top:5px;
    text-align: center;
    align-content: flex-start;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 300;
    line-height: 1.6;
    color: #58524B;
}

article.card-three {
    /* border:1px solid gray; DEBUG ONLY */
    flex:1 1 200px;
    background-color: #FDF6F0;
    border-radius: 50px;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:15px;
    max-width: 250px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
article.card-three div{
    /* border:1px solid green; DEBUG ONLY */
    height: 60px;
    width: 60px;
    align-content: center;
}
#icon-three {
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}
article.card-three h3{
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    margin:0;
    flex:1;
    max-height: 60px;
    margin-top:5px;
    text-align: center;
    align-content: center;
    color: #FDF6F0;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: #58524B;
}
article.card-three p{
    /* border:1px solid green; DEBUG ONLY */
    display: block;
    margin:0;
    flex:1;
    margin-top:5px;
    text-align: center;
    align-content: flex-start;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 300;
    line-height: 1.6;
    color: #58524B;
}
    /* pseudo-class */
article.card-one:hover {
    transform:scale(1.01);
}
article.card-two:hover {
    transform:scale(1.01);
}
article.card-three:hover {
    transform:scale(1.01);
}

/* container - 2 */
section.container-two {
    /* border:1px solid red; */
    margin:auto;
    position: relative;
    padding-top:1px;
    top:-100px;
    background-color: #FDF6F0;
    border-radius:100px 100px 0px 0px;
    box-shadow: 0 -4px 3px -3px rgba(0,0,0,0.1);
    padding-bottom: 80px;
}

div.container-explore{
    /* border:1px solid purple;  */
    /* width: 100%; */
    max-width: 1024px;
    height:100%;
    margin:auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

h2.CTA-explore {
    /* border:1px solid gray; DEBUG ONLY */
    width: 100%;
    text-align: center;
    display: block;
    color: #C79DA3;
    margin:0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    flex:1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

p.CTA-subtitle {
    /* border:1px solid gray; DEBUG ONLY */
    text-align: center;
    width: 100%;
    margin:0;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    color: #58524B;
    display: block;
    flex:1;
}
div.explore-buttons{
    /* border:1px pink solid; */
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap:15px;
    justify-content: space-around;
}

@media(max-width: 600px) {
    body{
        padding-left:15px;
        padding-right:15px;
    }
}

@media(max-width: 480px) {
    body{
        padding-left:5px;
        padding-right:5px;
    }
}