/* General Styling */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;

    

}

body {
    background-color: #222222;

    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    line-height: 115%;
    color: #FAF9F6;

    
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    width: auto;
    white-space: normal;
}

section {
    margin: 7% 0px;
    
}

.flex-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.emphasis {
    font-style: normal;
}


/* Blurred circles effect */

#content-wrapper {
     /* Create a stacking context to ensure it's above the z-index: -1 background */
    position: relative;
    z-index: 1; 

    /* Allows content to scroll normally */
    width: 100%;
}

#blurred-circles {
    /* Make it fill the entire viewport and stay fixed */
    position: absolute;
    inset: 0; /* Modern shorthand for top:0, right:0, bottom:0, left:0 */
    
    /* Place it behind the content */
    z-index: -1;

    /* Prevent this layer from causing horizontal scrollbars */
    overflow: hidden; 
}

#blurred-circle-1 {
  position: absolute;
  top: -600px;
  left: -600px;
  
  width: 888px;
  height: 938px;
  flex-shrink: 0;
  
  border-radius: 9999px;
  opacity: 0.5;
  background: #FCA311;
  filter: blur(100px);
}

/* General external link disguised as a button styling */

.general-button {

    padding: 0;
    margin: 0;
    cursor: pointer;
    text-decoration: none;


    background: #fca311;
    border: none;
    border-radius: 30px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FAF9F6;
    line-height: 115%;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: 800;

    max-width: 100%;
    min-width: 150px;
    height: 60px;

    transition: transform 0.2s ease-in-out;

}

.general-button span {
    padding: 16px 20px 16px 18px;
    border-radius: 30px;
    margin: 0;

    background-color: #222222;

    transition: background-color 0.2s ease-in-out;
}

.general-button span svg {
    vertical-align: -10%;    
}

.general-button:hover,button:active {
    transform: translateY(-3px);
    box-shadow: 0px 4px 5px #0A0A0A;
    outline: 0;
}

.general-button:hover span {
    background: transparent;
    color: #0A0A0A;
}

.general-button:active {
    transform: scale(0.9);
}


/* A Class for zoom on hover for img */

.hover-wrapper {
    width: 400px;
    border-radius: 50%;
    overflow: hidden;

}


/* Nav Styling */

.nav {
    
    position: relative;
    background-color: #1B1E23;
}

#logo {

    position: absolute;
    padding: 5px 5px 5px 15px;
}

.nav-items {

    margin: 0;
    padding: 0;
    margin: auto;
    padding: 24px 10px;



    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;

}

.nav-item {
    list-style-type: none;
}

.nav-item_content {
    text-decoration: none;
    color: #FAF9F6;

    transition: color 0.2s ease-in-out;
}

.nav-item_content:hover {
    color: #EA9811;
}





/* MAIN SECTIONS: */
/* hero */

#title {
    text-align: center;

    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 115%;
    font-style: normal;
}

.hero {
    margin: 3% 5px;
    position: relative;
}

.side-links_container {
    padding: 0;
    margin: 0px 10px;


    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    top: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.side-link {
    padding: 0;
    margin: 0;

    display: flex;
    transition: background-color 0.4s ease-in-out, border-radius 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.side-link:hover {
    padding: 2px;
    background-color: orange;
    border-radius: 30px;
}

.side-link_content {
    width: 80px;
}

.hero-main_wrapper {
    margin: 35px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 10px;

    text-align: center;
    
}

.hero-text_wrapper {
    position: relative;
}

/* Pseudo-element for a blurred circle effect */
.hero-text_wrapper::before {
    content: '';
    position: absolute;
    inset: 0;

    width: 350px;
    height: 350px;
    flex-shrink: 0;
    
    background: #ffffff; /* A different color */
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.2;
}

#valerkahere-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: brightness(85%);

    transition: scale 0.2s ease-in-out;

}

#valerkahere-img:hover {
    scale: 1.1;
}

/* hero-main text */

#name {
    font-size: 36px;
    font-weight: 600;
    line-height: 115%;

}

#position {
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    line-height: 115%;
}

#quote {
    font-size: 24px;
    font-weight: 600px;
    line-height: 115%;

}

/* cta (buttons) */
.cta-btns {
    margin: 70px 20px;

    display: flex;
    justify-content: center;
    flex-shrink: 0;

    gap: 50px;
}

.cta-btn {
    width: 360px;
    height: 72px;

    color: #fca311;
    font-size: 24px;
}

#what-i-build-link {
    padding: 19px 103px;
   
}

#contact-link {
    padding: 19px 118px;
}


/* expertise */



#expertise_headline {
    margin-left: 10%;
    text-align: left;
    line-height: 115%;
}

.expertise_content-wrapper {
    /* background-image: url(/assets/02_expertise/BT.webp);
    background-size: contain; */
    isolation: isolate;
    position: relative;

    display: flex;
    justify-content: space-evenly;

    padding: 5px 0px;


    text-shadow: 0px 0px 2px rgb(255, 255, 255);

   
}

.expertise_content-wrapper::before {
    z-index: -1;
    content: '';
    inset: 0;

    position: absolute;


    background-image: url(/assets/02_expertise/BT.webp);
    background-size: contain;

    opacity: 0.45;

    
}


/* about me */

#about-me {
    position: relative;
}

/* Pseudo-element for a blurred circle effect */
#about-me::before {
    content: '';
    position: absolute;
    left: -300px;

    width: 350px;
    height: 700px;
    flex-shrink: 0;
    
    background: #ffffff; /* A different color */
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.2;
}


.about-me_content-wrapper {
    width: 70%;
    margin: auto;
    
    display: flex;
    justify-content: center;
}

.about-me_text-wrapper {
    width: 100%;
}

.about-me_paragraph {
    margin-left: 100px;
}

.about-me_figure {
    width: 100%;
}

.collage-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 30px;

    overflow: hidden;
}

#collage {
    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: scale 0.2s ease-in-out;
}

#collage:hover {
    scale: 1.1;
}


/* what i build */

#what-i-build {
   position: relative;
   overflow: hidden;
}

#what-i-build::before {
    content: '';
    position: absolute;

    width: 350px;
    height: 700px;
    flex-shrink: 0;

    right: -350px;
    top: 120px;

    
    background: #ffffff; /* A different color */
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.2;
}

/* #arrow {
    padding: 0;
    margin: 0;
    width: 20px;
    height: 26.5px;
} */

.centering {
    width: 80%;
    margin: auto;
}

/* rocaille */

.rocaille-shop_flex-container {
    margin: 50px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

#visit-rocaille {
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background: #fca311;
    border: none;
    border-radius: 30px;

    color: #fca311;
    line-height: 115%;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: bold;

    max-width: 100%;
    min-width: 150px;
    height: 60px;

    transition: transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

#visit-rocaille span {
    padding: 16px 19px 15px 16px;
    margin: 0;

    background-color: #222222;
    border-radius: 30px;

    transition: background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;

}

#visit-rocaille span svg {
    vertical-align: -10%;    
}

#visit-rocaille:hover,#visit-rocaille:active {
    transform: translateY(-3px);
    box-shadow: 0px 4px 5px #0A0A0A;
    outline: 0;
}

#visit-rocaille:active {
    transform: scale(0.9);
}

#visit-rocaille:hover span {
    background-color: transparent;
    color: #0A0A0A;
}


.btn-test {
    padding: 0;
    margin: 0;
    cursor: pointer;

    background: #fca311;
    border: none;
    border-radius: 30px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FAF9F6;
    line-height: 115%;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: bold;

    max-width: 100%;
    min-width: 150px;
    height: 60px;

    transition: transform 0.2s ease-in-out;

}

.btn-test span {
    padding: 16px 20px 16px 18px;
    border-radius: 30px;
    margin: 0;

    background-color: #222222;

    transition: background-color 0.2s ease-in-out;
}

.btn-test span svg {
    vertical-align: -10%;    
}

.btn-test:hover,button:active {
    transform: translateY(-3px);
    box-shadow: 0px 4px 5px #0A0A0A;
    outline: 0;
}

.btn-test:hover span {
    background: transparent;
    color: #0A0A0A;
}

.btn-test:active {
    transform: scale(0.9);
}


.btn_visit-site {
    position: relative;
    isolation: isolate;

    width: 150px;
    height: 60px;
    
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;




    padding: 5px 10px;

    color: #0A0A0A;
    background-color: transparent;
    text-decoration: none;
    
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 115%;
    

    

    transition: transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out,
    text-shadow 0.2s ease-in-out,
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.btn_visit-site:hover {
    transform: translateY(-3px);
    
    
}


.btn_visit-site::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;

    background-color: #FCA311;;
    border-radius: 30px;

    transition: 
    background-color 0.2s ease-in-out, 
    box-shadow 0.2s ease-in-out,
    filter 0.2s ease-in-out;
}

.btn_visit-site:hover::before {
    cursor: pointer;
    background: radial-gradient(69.17% 69.17% at 48.61% 50%, #FCA311 11.54%, rgba(252, 163, 17, 0.10) 100%);
    box-shadow: 0 0 15px 7px var(--banners, #1B1E23), 0 0 10px 2px var(--banners, #1B1E23) inset;
    filter: blur(1.3px);

}


.rocaille-shop_text-container {
    width: 48%;
}

.rocaille-media_wrapper {
    width: 48%;
    border-radius: 30px;
    overflow: hidden;
}

.rocaille-media {
    width: 100%;
    height: 100%;
    border-radius: 30px;


    object-fit: cover;
    transition: scale 0.2s ease-in-out;
}

.rocaille-media:hover {
    scale: 1.1;

}   

.feature {
    list-style-type: none;
}

.icon_container {
    transform:translateY(4px) translateX(0px);
}

/* google */

#google-clone_img_wrapper {
    width: 90%;
    overflow: hidden;
    border-radius: 30px;

}

#google-clone_img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    text-align: center;

    object-fit: cover;
    transition: scale 0.2s ease-in-out;
}

#google-clone_img:hover {
    scale: 1.3;
}


#google-figure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin: auto;
    
}

#google-figcaption {
    width: 90%;
    margin-top: 9px;
}

.flex-column {
    width: 49%;
}

.google_text {
    width: 100%;
    
    margin-right: 5%;
    margin-left: 5%;
}

.google_text_container {
    width: 35%;
    margin: 20px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.google_notice_container {
    padding: 0;
    margin-bottom: 3%;
    background-color: transparent;
    isolation: isolate;
    position: relative;
}

.google_notice_container::before {
    content: '';
    z-index: -1;
    position: absolute;
    inset: 0;

    /* background-color: rgba(34, 34, 34, 0.5); 
    Can be used for glassmorphism effect */

    background-color: #fca3111a;
    border-radius: 30px;

    opacity: 0.6;

}

.google_notice {
    padding: 2% 5%;
    
}




.btn_see-code {
    width: 150px;
    height: 60px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;




    padding: 5px 10px;

    color: #FAF9F6;
    text-decoration: none;
    
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: bold;
    

    background-color: transparent;
    border: 2px solid #FAF9F6;
    border-radius: 30px;

    transition: transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out,
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

/* New rule: When the button is hovered,
    change the color of the text and the SVG inside it.
*/

.btn_see-code:hover {
    cursor: pointer;
    transform: translateY(-3px);
    background-color: #FAF9F6;
    color: #0A0A0A;
    box-shadow: 0px 2px 5px #FCA311;
    
}

.btn_see-code_svg{
    vertical-align: top;
}

.btn_see-code:active {
    transform: scale(0.9);
}



/* More projects soon */
.important-body-text {
    margin-left: 100px;
    width: 40%;
    margin-right: 5%;
    margin-left: 5%;
    text-align: left;
    line-height: 115%;
    font-weight: bold;
    font-style: italic;
}


/* why */

#why {
    position: relative;
}

/* Pseudo-element for a blurred circle effect */
#why::before {
    content: '';
    position: absolute;
    

    width: 350px;
    height: 1400px;
    flex-shrink: 0;

    left: -350px;
    
    background: #ffffff; /* A different color */
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.2;
}



.why_flex-container {
    

    width: 70%;
    margin: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.why_text-wrapper {
    line-height: 115%;
    width: 40%;
    margin: auto;
}

.why_philosophy-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why_philosophy_text-wrapper {
    width: 60%;
    margin: 5px;
}

#network-img_wrapper {
    width: 80%;
    overflow: hidden;
    border-radius: 30px;

}

#network-img {
    width: 100%;
    height: 100%;
    border-radius: 30px;

    object-fit: cover;
    transition: scale 0.2s ease-in-out;
}

#network-img:hover {
    scale: 1.2;
}

/* Contact */


.contact_content {
    position: relative;
    width: 70%;
    padding: 0px 10% 5%;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 30px;

    text-align: center;
    background-color: #1B1E23;
    border-radius: 30px;

}

.contact_content::before {
    content: '';
    position: absolute;
    inset: -3px;

    isolation: isolate;
    z-index: -1;

    padding: 5px;
    background: linear-gradient(263deg, #FCA311 7.27%, #355EA3 78.93%);
    border-radius: inherit;

    

}

#slogan-and-logo_wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;

}

#slogan {
    margin: 0;
    align-self: center;

    font-weight: 500;
}

#contact-logo {
    min-width: 150px;
}

#valerkahere-email_wrapper {
    margin-bottom: 15px;
}

#valerkahere-email {
    width: 100%;
    font-size: 28px;

    color: #FAF9F6;
    font-weight: bold;
}

#reachout-and-links_wrapper {
    font-weight: 500;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;

    margin-top: 40px;
}

.link {
    color: #FAF9F6;
    text-decoration: none;
    
    transition: color 0.2 ease-in-out;
}

.link:hover {
    color: #EA9811;

}

/* Footer */

footer {
    position: relative;
    background-color: #1B1E23;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    
    width: 500px;
    height: 250px;
    flex-shrink: 0;

    right: -200px;
    top: 120px;
    
    border-radius: 9999px;
    opacity: 0.8;
    background: #FCA311;
    filter: blur(100px);

}

#footer_content {
    width: 40%;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.text {
    margin-top: 10px;
    margin-bottom: 30px;
}