/*  
    Author: Nicole Wozniak
    Date:   3/20/2025
    Course: ITWP 1100 O1201 2025WI 
    Filename: styles.css
*/

/*Font for Title/Headers*/
@font-face{
    font-family: 'Almendra';
    src: 
        url(webfonts/AlmendraDisplay-Regular.ttf);
    font-style: normal;
}

/*Font for smaller headers on pages*/
@font-face{
    font-family: 'Cinzel';
    src: 
        url(webfonts/CinzelDecorative-Regular.ttf);
    font-style: normal;
}

/*Nav Font*/
@font-face{
    font-family: 'Frederick';
    src: 
        url(webfonts/FrederickatheGreat-Regular.ttf);
    font-style: normal;
}

/*Font for general text*/
@font-face{
    font-family: 'Itim';
    src: 
        url(webfonts/Itim-Regular.ttf);
    font-style: normal;
}

 /*nav bar style from - https://www.sliderrevolution.com/resources/css-menu/
 I changed colors, sizes and a few other little things to make it fit my idea*/
 nav {
    margin: 25px auto 0;
    position: relative;
    width: 750px;
    height: 50px;
    background-color: #315278;
    border-radius: 8px;
    font-size: 0;
    font-family: 'Frederick';
    padding-left:5px;
  }
  nav a {
    line-height: 50px;
    padding-left: 1px;
    height: 100%;
    font-size: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: #c0c0c0;
    cursor: pointer;
  }
  nav .animation {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all .5s ease 0s;
    border-radius: 8px;
  }
  nav a:nth-child(1) {
    width: 100px;
  }
  nav a:nth-child(2) {
    width: 100px;
  }
  nav a:nth-child(3) {
    width: 130px;
  }
  nav a:nth-child(4) {
    width: 130px;
  }
  nav a:nth-child(5) {
    width: 130px;
  }
  nav a:nth-child(6) {
    width: 130px;
  }
  nav .start-home, a:nth-child(1):hover~.animation {
    width: 110px;
    left: 0;
    background-color: #209657;
  }
  nav .start-guides, a:nth-child(2):hover~.animation {
    width: 100px;
    left: 110px;
    background-color: #8a8819;
  }
  nav .start-bundles, a:nth-child(3):hover~.animation {
    width: 130px;
    left: 210px;
    background-color: #ce1d70;
  }
  nav .start-prompts, a:nth-child(4):hover~.animation {
    width: 130px;
    left: 335px;
    background-color: #7d4892;
  }
  nav .start-resources, a:nth-child(5):hover~.animation {
    width: 130px;
    left: 470px;
    background-color: #c56c1e;
  }
  nav .start-contactus, a:nth-child(6):hover~.animation {
    width: 140px;
    left: 600px;
    background-color: #09b7b7;
  }

  /*general styling
  background-image: radial-gradient( circle farthest-corner at 22.4% 21.7%, rgba(4,189,228,1) 0%, rgba(2,83,185,1) 100.2% );*/
body{
    font-size: 16px;
    font-family: 'Itim',cursive;
    background: #0259b0;
    background-image: linear-gradient(to right, #141e30, #243b55);
    color:silver;
}

h1{
    text-align: center;
    text-align: center;
    font-size: 35px;
    color: #a90cf7;
    text-shadow: 3px 3px 5px #000000;
    font-family: 'Almendra', cursive;
}

h2{
    text-align:center;
    font-size: 22px;
    text-shadow:1px 1px 2px gray;
    font-family:'Cinzel', cursive;
    color: #7fff00;
}

h3{
    font-size:16px;
    font-family:'Cinzel', cursive;
    color: #7fff00;
    margin: 0 75px;
}

p{
    color: #c0c0c0;
    font-family: 'Itim',cursive;
    font-size: 16px;
    padding: 0 50px;
}

.bodyText{
    margin-top: 3rem;
    margin-left: 2rem;
}

/*bundle styles*/
article{
    width: 900px;
    height: auto;
    position: relative;
    text-align: left;
    border: 2px inset #9932cc;
    margin:auto;
    background-image: linear-gradient(to right, #4a00e0, #8e2de2);
}

.bundleOrder{
    margin-top: 30px;
    padding-top: 10px;
    height: 250px;
}

.bundleOptions, .bundleOptions label{
    float:left;
    font-size: 16px;
    margin-top: 5px;
}

.bundleOptions input{
    float:left;
    clear: left;
    margin: 10px;
}

.breakdown{
    display:flex;
    gap:25px;
    position:relative;
}

.listTitle{
    font-size: 20px;
    color: #6cc612;
    padding-bottom: 40px;
}
li{
    font-size: 16px;
    margin-left: 10px;
    color:#c0c0c0;
}

.columnR{
    width:50%;
    float:right;
    padding-bottom: 40px;
}
.columnL{
    width:50%;
    float:left;
    padding-bottom: 40px;
}

.total, #totalCost, #totalItems{
    color:#c0c0c0;
    text-align: center;
    font-size: 18px;
    line-height: .2;
}

/*contact us style*/
.formContent{
    position: relative;
    width: 740px;
    height: 570px;
    margin: 0 auto;
    padding: 1em;
    box-sizing: border-box;
    border: 5px inset #a90cf7;
    background-image: linear-gradient(to right, #4a00e0, #8e2de2);
}

.formContent label{
    color: #d179fd;
    display: block;
    float: left;
    clear: left;
    width: 150px;
    margin: 0 15px 25px 0;
}
.formContent input, #reason{
    float: left;
    width: 200px;
    margin: 0 0 25px 0;
    border: 3px solid #6cc612;
    background-color:#0259b0;
    color: #d179fd;
}

.formContent textarea{
    float: left;
    width: 400px;
    height: 100px;
    margin: 0 0 25px 0;
    border: 3px solid #6cc612;
    background-color: #0259b0;
}

::placeholder{
    color:#05e4e4;
}

.formContent p{
    color:#6cc612;
}

#subButton{
    color: #6a00ff;
    position:absolute;
    bottom:0;
}

input[type="submit"]{
    display: block;
    background-color:#6cc612;
    width: 120px;
    height: 30px;
    font-size: 1em;
    margin: 20px 300px;
    float: left;
    clear: none;
   
}

#formError{
    color: #fa6aad;
}

/*added styles to the footer that holds the validation links and the homepage link*/
#validation{
    font-family: 'Almendra', Helvetica, sans-serif;
    text-align: center;
    margin: 30px auto;
    border:deepskyblue groove;
    width:40%;
}

#validation a:link{
    color:#6cc612;
    font-size:.85rem;
    text-decoration: underline;
}
#validation a:visited{
    color:#c0f76f;
    text-decoration: line-through;
}
#validation a:hover{
    text-decoration: line-through aqua;
}
#validation a:active{
    text-decoration: line-through aqua;
} 

.socials{
    padding-top: 25px;
}

.disclaimer{
    font-size: small;
    text-align: center;
}

.logo{
    border-radius: 15px;
    width: 5%;
}

/*Randomizer Box*/
.randPrompt{
    background-image: linear-gradient(to right, #4a00e0, #8e2de2);
    position: relative;
    width: 600px;
    height: 175px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    border: 5px inset #a90cf7;
    color:#05e4e4;
    font-size: large;
}
.randPrompt h3{
    color:  #b31cff;
        text-decoration: underline;
        text-shadow: 3px 3px 5px #000000;
}

#nextPrompt{
    position: absolute;
    bottom: 0;
    margin-left: 125px;
    border-radius: 10px;
    background: #a90cf7;
    height: 25px;
    width: 150px;
    font-family: 'Cinzel';
}

.fullPromptList{
    border: 5px groove #a90cf7;
    width: 80%;
    background-image: linear-gradient(to right, #8e2de2, #4a00e0);
    margin: 100px;
}

#calligraphy{
    width: 400px;
    height: 250px;
    margin: 10px;
    border: 7px solid aqua;
}

.pictureText{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
}
.pictureTex p{
    align-self: center;
    padding-right: 60px;
}

.commonT{
    padding-top: 25px;
}

#typewriter{
    width: 300px;
    height: 200px;
    margin: 10px;
    border: 5px solid aqua;
}

.listStyle ul{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    padding-bottom: 40px;
    justify-self: center;
}

/*Photo Gallery*/
.photogallery img {
    width: 400px;
    height: 250px;
    margin: 10px;
    border: 10px solid aqua;
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    transition-duration: 1s;
}

.photogallery img:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.1);
    -webkit-filter: none;
    filter: none;
}

/*Homepage styles*/
#homepageLink{
    font-family: 'Almendra', Helvetica, sans-serif;
    text-align: center;
    margin: 30px auto;
    border:deepskyblue groove;
    width:40%;
}

#homepageLink a:link{
    color:#6cc612;
    font-size:2rem;
    text-decoration: underline;
}
#homepageLink a:visited{
    color:#c0f76f;
    text-decoration: line-through;
}
#homepageLink a:hover{
    text-decoration: line-through aqua;
}
#homepageLink a:active{
    text-decoration: line-through aqua;
} 

.research {
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 20px;
 }

article > p {
    display: none;
    margin: 15px;
 }
 
 article > h2 {
    margin: 15px;
    cursor: pointer;
 }

.outboundLinks a:link{
    color:#6cc612;
    font-size:1rem;
    text-decoration: underline;
    
}
.outboundLinks a:visited{
    color:#c0f76f;
    text-decoration: line-through;
    
}
.outboundLinks a:hover{
    text-decoration: underline aqua;
    
}
.outboundLinks a:active{
    text-decoration: underline aqua;
} 