@charset "utf-8";
/* CSS Document */

/* ================================
   FAQ Section Styling
   ================================ */
   
:root {
    --primary-color: #0070ba;   /* Blue */
    --2-primary-color: #197ec0; /* Blue #0070ba but one shade lighter */
    --3-primary-color: #0064a7; /* Blue #0070ba but one shade darker */
    --secondary-color: #ffc439; /* Orange */
    --text-color: #333;
    --background-color: #fff;   /* White */
    --background-color-02: #f8f8f8; /* White Smoke */
	--background-color-03: #fffceb;  /* Ivory */
    --body-color: #67a3e1;      /* Cornflower Blue */ 
    --yellow-color: #fefe00;    /* Yellow */
}

  
#outer_container { 
	}
   
.highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.25rem 1.5rem 0.5rem 1.5rem;
  background: var(--background-color-03); /*#a8ffa8;*/
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
} 

/*.highlight .top_page  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 0 1rem;
  }
  
.highlight .top_page:first-child {
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
	}
.highlight .top_page:nth-child(3) {
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
	}
  
.highlight .top_page img  {
	height: 6.5rem;
	padding
} */

.faq-section h1  {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
}

/*.highlight h1 {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
	}*/

.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}  

/* Fix for sticky navigation covering anchor links */
.faq-item:target {
  /* This creates a space above the anchor target equal to the nav height */
  scroll-margin-top: 150px; 
}

.faq-item .faq-answer h2 {
  font-size: 1.4rem; 
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
}

/* ================================
   FAQ Accordion Styling
   ================================ */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
} 

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1rem 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color, #0070ba);
}

.faq-icon {
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-color, #0070ba);
}  

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  color: #555;
  padding: 0; /* no padding until open */
}

.faq-item.active .faq-answer {
  /* Remove fixed max-height (JS sets it dynamically) */
  padding: 0.5rem 0 1rem; 
}

div.faq-item .faq-question:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 112, 186, 0.1); /* 0.4 = 40% opacity */
  border-radius: 4px;
  padding: 0.75rem 0 0.75rem 0.313rem;
  color: #0070ba;
} 

#titles-standard ul {
	padding-left: 1.6rem;
}
	
#titles-standard ul.ul-02 { 
    list-style-type: none;
}

ul.emoji { 
    list-style: none; /* This removes the default bullets */
    padding: 0;
    /*margin-left: 3rem;*/
} 

ul.emoji li {
    padding-left: 30px; /* Space for the image */
    background-image: url('../sunshinephotos/sunshine-vintage-movies-film-strip.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px; /* Easily control the icon size! */
	/*filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));*/
}
 
footer {
	padding-bottom: 625px;
	}

                             /* Responsive FAQ */
							 
/*.cart_image {
	  display: inline;
	} 	*/						 

@media (max-width: 710px) { 
  .faq-section {
    padding: 1rem;
  }

  .faq-section h1 {
    font-size: 1.5rem;
  }

  .faq-item h2 {
    font-size: 1.1rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
}  

@media (max-width: 615px) {
  .display_bg_nav_faq {
	  display: none;
  }
}  

@media (max-width: 530px) {
  .main-nav-container-cart ul li {
    font-size: 90%;
  }
}  

@media (max-width: 500px) { 
  .main-nav-container-cart ul,
  .main-nav-container-cart ul li {
	padding: 0;
	margin: 0;
	}
  .cart_image {
	  display: none;
	} 
}

@media (max-width: 470px) { 
  #navMenu-cart {
	 gap: 0.5rem;
	}  
}  

@media (max-width: 425px) { 
  .about_us_nav {
	  display: none;
	} 
}

/* See Embedded <style> in HTML for @media (max-width: 380px) */

