@import "tailwindcss";

@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Inconsolata:wght@200..900&family=Italianno&family=Macondo&family=Tangerine:wght@400;700&display=swap');
/* @import url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(node_modules\@fortawesome\fontawesome-free\css\all.css>); */
@import url(/images/);



/* 
Verification for contact form. 
*/

.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}



.nav-item {
  border-radius: 3px;
  background-color: rgb(101, 171, 101, .1);
  text-align: center;
}

.nav-item:hover {
  background: var(--dark2);
  color: var(--black);
}


.art-section {
  margin: 15px;
  margin-top: 8em;
  padding: 8px;
}

.head-image {
  box-shadow: 0 1px 3px var(--dark1), 0 1px 2px var(--dark1);
  background-image: url(images/cherryblossoms.jpg);
  background-size: cover;
  /* background-blend-mode: lighten; */
  height: 35vw;
  overflow: hidden;

}

.intro {
  color: var(--black);
  z-index: 3;
}

.about-me {
  background-color: var(--dark1);
  border-radius: 4px;
}

.contact {
  color: var(--black);
  background-color: var(--dark2);
}

.contact-icon {
  color: var(--dark2)
}


/* 
#contact-form {
  align-items: center;
  display: flex;
} */
.form-group {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin-bottom: 1rem;
  margin-inline: auto;
}

.form-group::label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group::input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
}

.submit-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.content-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 100vw;
}


.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}



.footer {
  position: relative;
  bottom: 0px;

}




/* Font Styles */

.corinthia-regular {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
}

.corinthia-bold {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-style: normal;
}

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.italianno-regular {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}

/* <weight>: Use a value from 200 to 900
<uniquifier>: Use a unique and descriptive class name */
.inconsolata-standard {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.macondo-regular {
  font-family: "Macondo", cursive;
  font-weight: 400;
  font-style: normal;
}

.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.tinos-bold {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: normal;
}

.tinos-regular-italic {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: italic;
}

.tinos-bold-italic {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
}



/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-1152 {
    padding: var(--sectionPadding);
  }

  #gallery-1152 .cs-container {
    width: 100%;
    /* changes to 1280px at large desktop */
    max-width: 59rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #gallery-1152 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #gallery-1152 .cs-topper {
    color: #767676;
  }

  #gallery-1152 .cs-title {
    margin: 0;
  }

  #gallery-1152 .cs-gallery {
    width: 100%;
    /* changes to 100% at tablet */
    max-width: 31.25rem;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }

  #gallery-1152 .cs-image {
    /* 260px - 360px */
    min-height: clamp(16.25rem, 60vw, 20rem);
    border-radius: 1rem;
    /* clips the image corners */
    overflow: hidden;
    display: block;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
  }

  #gallery-1152 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
}

/* mobile displays  */