/*
File Name: template.css
Date: 07/27/2020
*/


* { box-sizing: border-box; }

header, nav, main, footer { display: block; }

body {
    font-family: Open Sans, Arial, Tahoma;
    font-size: 1em;
    background-color: white;
    padding: 0;
    margin: 0;
}

/*Header styles*/
header {
    background-position: 5px;
    background-color: white;
    display: block;
}

h1 {
    padding-top: 35px; padding-bottom: 35px;
    background-color: white;
    text-align: center; font-size: 2em;
}
 
/*h2 and paragraph styles*/
h2, p { text-align: center; font-size: 1.5em; }

h3 {
    text-align: center;
}

/*Footer styles*/
footer {
    text-align: center;
    background-color:  #ff0000;
    padding-top: 15px;
    font-size: 0.9em;
    
}

/*Link in footer to e-mail*/
footer a { color: white; }

/*Send us a Comment Form adjusted to smaller display and centered*/
.form { width: 100px; margin-right: auto; margin-left: auto; 
padding-right: 70px; }

/*Adjust comment form in different displays*/
fieldset {
    width: 355px; 
    margin-right: auto; 
    margin-left: auto; 
    text-align: center;
}

/*Input info area box for comment form*/
input { border-width: 1px;
        padding-right: 74px;
        padding-bottom: 7px;
        margin-left: 4px;
        margin-right: 75px;
}

/*Order Information box inside comment form*/
textarea {
    padding-left: 1px;
    margin-left: 6px;
    margin-bottom: 8px;
}

/*Contact Form*/
.contact { 
    font-weight: bold; 
    text-align: center; 
    font-size: 1.3em; 
    height: auto;
    width: auto;
    padding: 10px;
    
    
    
    

    

    
   
  

}

#socialFeed {
    width: auto;
    height: auto;
    background-color: white;
    display: inline-block;
    text-align: center;
}




/*To center text of business name, address, and phone in Desktop display for CONTACT PAGE*/
#contact2 {
    font-weight: none;
    text-align: center; 
    font-size: 1.6em;
}

/*Homepage text 'About section & Info' paragraph in Desktop display*/
#thankyou { text-align: center; font-size: 1.4em; }

/*To center the hero image*/
#heroImage { 
    background-position: center;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Styling the Navigation */
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: none;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #ff0000;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }









/* JS Slider*/
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}










/*FAQs Styling*/

 /* definition list */

dt, dd {
   font-family: Arial, Helvetica, sans-serif;
   margin: 2px 0;
}

dt {
    cursor: pointer;
    font-size: 1.5em;
}
dt:hover {
    color: #ac92ec;
}

dd {
    font-size: 1.2em;
    font-style: italic;
}

/* arrow icon left */

dt:before {
    border: 0.5em solid;
    border-color: transparent transparent transparent #f2eeef;
    content: '';
    display: inline-block;
    height: 0;
    margin-right: 0.5em;
    vertical-align: middle;
    width: 0;
}

dt:hover:before {
    border-left-color: #ac92ec;

}

/* arrow icon down */

dt.open:before {
    border-color: #f2eeef transparent transparent transparent;
    border-bottom-width: 0;
}
    
dt.open:hover:before {
    border-left-color: transparent;
    border-top-color: #ac92ec;
}

.headings {
    font-family: monospace;
}   
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    















/* Tablet display*/

@media only screen and (max-width: 1024px) {
    
    body { padding: 0; margin: 0; background-image: none; }
    
    main { margin: 0; padding: 0; font-size: 90%; }
    
    /*h2 and paragraph styles*/
    h2, p { font-size: 1.4em; }
    
    footer { margin: 0; font-size: 0.8em }
    
    /*To adjust business name, address, and phone text*/
    .contact { text-align: center; font-size: 1.6em; }
    
    #heroImage { background-attachment: scroll; }
    
    #thankyou { text-align: center; border: 3px solid white;  margin-left: 100px; margin-right: 100px; padding-left: 6px; padding-right: 2px; margin-bottom: 1px; height: 140px; padding-top: 31px; font-size: 1.4em; }
    
  
    
}


/* Smartphone display */
    
@media only all and (max-width: 768px) {
    
    h1 { height: 100%; font-size: 1.5em; padding-left: 0.3em; }
    
    /*h2 and paragraph styles*/
    h2, p { font-size: 1.4em; }
    
    footer { font-size: 0.7em; }

    .topnav a.active {
        background-color: black;
        color: white;
    }
   
    /*To adjust text in 'At Outside The Box Candle Shop' paragraph text*/
    #thankyou { text-align: center; border: 1px solid white;  margin: 9px; padding: 10px;  }
    

    
    /*Input info area box for comment form*/
    input { 
        border-width: 3px;
        padding-right: 39px;
        padding-bottom: 7px;
        margin-left: 24px;
        margin-right: 46px; }
    
    /*Order Information box inside comment form*/
    textarea {
        padding-left: 1px;
        margin-left: 18px;
        margin-bottom: 10px;
    }
    
    /*To adjust business name, address, and phone text*/
    .contact {
        font-size: 1.8em;
        
        font-weight: bold;
    }

    /*Adjust the hero Image*/
    #heroImage { 500px; width: auto; }
    
    
    

   
    
}
 



