/*@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&family=Pacifico&display=swap&family=Alike&display=swap&family=Poller+One&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Dela+Gothic+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --sky-blue:#a3c0d7;
    --blue:#6B9AC4;
    --butter-yellow: #f5f597;

    --bold-font:"Dela Gothic One", sans-serif;
    --about-artist-font: "Cormorant", serif;
    --descriptions: "Montserrat", sans-serif;

    --bright-sky:#4A90E2;
    --navy: #1D2D6B;
    --red-orange: #D90429;
    --marigold-yellow: #FFB703;
    --crisp-white:#ffffff;
    --bg-color: #FAF7F2;
}

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

body,
html{
    font-family: var(--about-artist-font);
    width:100%;
    min-height:100vh;
    overflow-x:hidden;
    background-color: #FAF7F2;
    scroll-behavior: smooth;
}

h1,
h2,
h3{
    font-family:var(--bold-font);
    color:var(--red);
}

hr{
    border:none;
    border-top: 2px dotted blue;
}

.titles{
    position:relative;
    display:inline-block;
    transform: skewy(-15deg);
    font-size:4rem;
    font-weight: 900;
    color: var(--red-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
   text-shadow: 
    1px 1px 0px #FFFFFF, -1px -1px 0px #FFFFFF, 
    1px -1px 0px #FFFFFF, -1px 1px 0px #FFFFFF,
    2px 2px 0px #FFB703, 
    3px 3px 0px #FFB703, 
    4px 4px 0px #FFB703, 
    5px 5px 0px #FFB703;
    height: 50%;
}
/*====================== NAV ====================*/
.site-header{
    padding:0 20;
}

.nav-container{
    display:flex;
    position: relative;
    align-items: center;
    height:10vh;
    background-color:var(--crisp-white);
    z-index:1000;
    padding: 5px;
}

.nav-logo{
    justify-content: flex-start;
    color:white;
    text-shadow: 2px 3px 0px var(--red);
    width:150px;
    object-fit: contain;
    margin-right: auto;
}

.nav-menu{
    display: flex;
    justify-content:center;
    align-items:center;
    gap: 5%;
    list-style-type: none;
}

.nav-menu a{
  margin-right: 1rem;
  font-family: var(--bold-font);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy); 
  text-transform: capitalize;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s ease;
  position: relative;
}

/* The vibrant hover state */
.nav-menu a:hover {
  color: var(--red-orange);
}

/* A solid marigold accent line that pops up underneath on hover */
.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px; /* Thick, brush-stroke thickness */
  bottom: 0;
  left: 16px;
  background-color: #FFB703; /* Vibrant Marigold */
  transition: width 0.2s ease;
}

.nav-menu a:hover::after {
  width: calc(100% - 32px); /* Expands beautifully under the text */
}

.menu-toggle{
    display:none;
}

.hamburger-btn{
    display:none;
}



/*===============Top Header================*/

.top-full{
    width: 100vw;
    height: auto;
   position: relative;                       
}

.top-title {
  width: 100%;
  height: 70vh;
  position:relative;
  overflow: hidden;
}

.abstract{
    width:100%;
    height:100%;
    object-fit: contain;
   object-position:center ;
   display:block;
    margin: 0;
    background-color: #F9F8F6;
  /*background-image: radial-gradient(circle at 50% 50%, #f1ebdf 0%, #e6dbcc 60%, #c4b096 100%); */
  box-shadow: 
    inset 0 0 20px rgba(135, 110, 80, 0.2), 
    0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px
}

.text-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
  align-items: center;
  justify-content: center;
  width: 65%;
}
.text-box img{
    width:90%;
    height:15%;
    display: block;
    object-position:50%;
}

/*========================== MARQUEE ===============*/
.wrapper {
    background-color:var(--marigold-yellow);
    color: #1D2D6B;
    opacity:65%;
    width: 100%;
    height: 35px;
    overflow: hidden;
    position: relative;
    font-size: 20px
}

.marquee {
    animation: marquee 6s 0s linear normal infinite;
    white-space: nowrap;
    position: relative;
    display:inline-block;
    font-size:24px;
}
/*=================================== GALLERY ============*/

.shop-section{
    width:100vw;
    min-height: 100vh;
    background-color: var(--bright-sky);
}

.shop-gallery{
  display: flex;
  align-items:center;
  justify-content: center;
}

.gallery-item{
    display: flex;
    flex-direction: column;
    align-items:center;
    margin:15px;
    border: 1px var(--butter-yellow) solid;
    background: var(--crisp-white);
    border-radius:5px;
}

.gallery{
  height: 18rem;
  max-width: 45rem;
  border-radius:1%;
  display: block;
  object-fit:cover;
}
 
.gallery-item p{
    height:2rem;
    border-radius:10%;
    margin-top: 8px;
    font-size: 17px;
    font-family: var(--descriptions);
    color: var(--navy);
    text-align: center;
}

.gallery:hover{
    opacity:80%;
    cursor:pointer;
    border:2px #a82141 solid;   
}


/*========================Artist Bio =======================*/
.artist-folio{
    display: flex;
    width: 100vw;
}

.artist-div {
    display:flex;
    flex-direction: row;
    margin: 0;
    align-items: flex-start;
}

.jess-face{
    max-height:40rem;
    border-radius: 100px 100px 0 0;
    width:25rem;
    padding: 20px;
    margin:10px;
    border: 1px var(--warm-cream) solid;  
}
.meet{
    font-family: var(--descriptions);
    font-weight: 600;
    font-style: normal;
    position:relative;
    font-size:25px;
    color: var(--red-orange);
    text-shadow: 0px 2px 0px var(--marigold-yellow);
    margin-top: 0;
    margin-bottom: 5px;
}
.bio{
   box-sizing: border-box;
   background-color: var(--background-cream);
   height: auto;
   width: 60vw;
}

.bio-words{
    font-size: clamp(1rem, 1.2rem, 1.0rem);
    color:var(--bg-color);
    font-family: var(--descriptions);
    width:80%;
}

.bio-words p{
    color:var(--navy);
}

.artist-folio{
    display: block;
    width: 100vw;
    height:100%;
}

.jess-face{
    height:25rem;
    border-radius: 100px 100px 0 0;
    width:25rem;
    padding: 20px;
    margin:10px;
    border: 1px var(--warm-cream) solid;
    object-fit: contain;
}
/*================================= BUTTONS============= */

.more_btn{
  display:block;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: var(--marigold-yellow);
  color:var(--navy);
  font-family: var(--descriptions);
  font-size: 15px;
  border-radius: 8px;       
  padding: 10px;
  width: fit-content;
  margin-top:15px;
  text-decoration: none;
}

.more_btn:hover{
    opacity: 75%;
    cursor:pointer;
    color:var(--red-orange);
    background-color: var(--butter-yellow);
}

#stripe-checkout-btn {
  width: 100%;
  background: #635bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}


.scroll-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: rgb(235, 192, 202);
  padding: 5px;
  cursor: pointer;
  z-index: 1000;
  font-size: 40px;
}

.scroll-btn:hover {
  background-color: #b7d2ee;
}

/* ================ INSTA ROW PHOTOS ======================== */

.insta-section{
    position:relative;
    padding: 20px 0;
    background-color: var(--bright-sky);
    text-align: center;
}

.insta-title{
    font-family: var(--bold-font);
    font-size: 4rem;
    color: var(--marigold-yellow);
    position: relative;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: 4px;
    margin-bottom: -24px;
}

.insta-handle{
    position: relative;
    margin:1.5em;
    color: var(--marigold-yellow);
    font-size: 15px;
    letter-spacing: 2px;
    z-index: 2;
}

.insta-grid{
    position: relative;
    z-index: 1;
}

.insta-img{
    width: 170px;
    height: 170px;
    object-fit: cover;
    object-position:center center;
}

/*================================ CONTACT PAGE ===============*/

.contact_section{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height:85px;
   
}
.contact_title{
    font-family: var(--bold-font);
    color: var(--blue); 
}

.contact_btn{
  border: 2px navy solid;
  border-radius:15px;
  padding:10px;
  background-color: var(--bg-color);
  margin:10px;
}

.contact_btn a{
  text-decoration-line: none;
  color: var(--navy);
}

.contact_btn:hover{
  background-color: var(--marigold-yellow);
  cursor: pointer;
}

.socials{
    display:flex;
    justify-content: space-between;
    height:100px;
    width: 100vw;
    font-weight: bold;
}
/*================================ FOOTER ===============*/
hr{
    border: .1px solid black;
    margin:10px;
}

.footer{
    width: 100%;
}

.footer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

ul.list-social{
  display:flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 5%;
  list-style-type: none;
  color:var(--navy);
  margin:auto;
  font-family: var(--bold-font);
}

.foot-links:hover{
    cursor: pointer;
    color:var(--red-orange);
}


.nav-logo-footer{
    display:flex;
    justify-content: flex-start;
    width:15%;
    object-fit: contain;
}

.foot-links {
    color:var(--green-blue);
    text-decoration: none;
    font-size:20px;
    font-weight: bold;
}

.foot-links2{
    color:var(--green-blue);
    text-decoration: none;
    font-size:15px;
}

.footer p {
    display:flex;
    align-items: center;
    justify-content: center;
    font-family: var(--about-artist-font);
}


.copyright{
    font-size:15px;
    color: var(--sky-blue);
    font-family: var(--descriptions);
    margin-bottom: 25px;
}

.tani_web{
    text-decoration: none;
    color: var(--red-orange);
    margin:5px;
}

/*============================== CONTACT PAGE=========================================*/
.contact_titles{
    font-size:2.5em;
    transform: none;
    padding:3%;
}

.social_img{
  width: 50px;
  margin: 15px;
}

.top_section_contact p{
    color: var(--navy);
    padding:2%;
    font-size: 1.5em;
}

.contact_page{
    font-family: var(--bold-font);
    width:50vw;
    max-height:100vh;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
    color:var(--navy);
}

.pageclip-form{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.pageclip-form input {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.type_area{
  width: 25em;
  height: 10em;
}

.text_form{
  border: 1px solid var(--sky-blue); 
  border-radius: 10px;
  padding: 5px;
  color:red;
}


.pageclip-form__submit{
    width:50px;
    height:30px;
    border:1px solid var(--navy);
    border-radius: 10px;
    color:var(--navy);
    background-color:var(--bg-color);
    padding: 5px;
    font-family: var(--descriptions);
}

.pageclip-form__submit:hover{
    background-color:var(--marigold-yellow);
    cursor: pointer;
}


