@charset "UTF-8";
/* CSS Document */
/* styles.css */
@media screen and (max-width: 768px) {
  /* Styles for screens with a maximum width of 768px (e.g., tablets) */

  .navbar {
    flex-direction: column; /* Stack the navigation links vertically */
    align-items: center; /* Center align the navigation links */
  }

  .navbar li {
    padding: 5px; /* Reduce the padding for better spacing */
  }
}

@media screen and (max-width: 480px) {
  /* Styles for screens with a maximum width of 480px (e.g., mobile phones) */

  .logo {
    margin-right: 0; /* Remove the margin for the logo */
    margin-bottom: 10px; /* Add spacing below the logo */
  }

  .navbar li {
    padding: 5px 10px; /* Adjust the padding for better spacing */
  }
}

.dropdown-menu {
  display: none; /* Hide the dropdown menu by default */
  position: absolute;
  background-color: #F9E9FF;
  padding: 10px;
  border-radius: 5px;
  z-index: 1;
  list-style-type: none; /* Remove bullet points */
}

.dropdown:hover .dropdown-menu {
  display: block; /* Show the dropdown menu on hover */
}

.dropdown-menu li {
  padding: 5px 0;
}

.dropdown-menu li a {
  color: #311F41;
  text-decoration: none;
  position: relative; /* Set position to relative for absolute positioning of the box */
}

.dropdown-menu li a:hover {
  color: #C7A9D3;
}

.dropdown-menu li a:hover::before {
  content: ""; /* Create an empty content */
  position: absolute; /* Position the box absolutely relative to the link */
  top: -1px; /* Adjust the top position of the box */
  left: -1px; /* Adjust the left position of the box */
  right: -1px; /* Adjust the right position of the box */
  bottom: -1px; /* Adjust the bottom position of the box */
  border: 2px solid #C7A9D3; /* Add border styles */
  border-radius: 10px; /* Add border-radius for rounded corners */
  z-index: -1; /* Place the box behind the link */
}

/* Show the dropdown menu when the "Gallery" link is focused */
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.breadcrumbs {
    font-size: 14px;
    color: #5F376C;
    margin: 10px 0;
}

.breadcrumbs a {
    text-decoration: none;
    color: #81568F;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #D34EFF;
}

.breadcrumbs span {
    font-weight: bold;
}

body{
	font-family: 'Nunito', sans-serif;
	position: relative;
	} 



:root{
	primary-background-color: #F1DEFF; 
    secondary-background-color: #F9E9FF;
    primary-text-color: #311F41;
    secondary-text-color: #C7A9D3;
} 
	

.dark-mode {
  primary-background-color: #311F41;
  secondary-background-color: #53156B;
  primary-text-color: #F9E9FF;
  secondary-text-color: #C7A9D3;
}

header {
  background-color:#F1DEFF;
  color: var(--primary-text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}


.logo {
    position: absolute; /* Position the logo element */
    top: 12px; /* Adjust the top position as needed */
    left: 20px; /* Adjust the left position as needed */
    display: flex;
    align-items: center;
}

.logo img {
    width: 90px; /* Set the desired width of the image */
    height: auto; /* Allow the height to adjust proportionally */
    margin-right: 10px; /* Adjust the spacing between the logo and the navigation links */
}


.light-icon{
	width: 30px;
	height: auto;
	cursor: pointer;
	margin-left: 500px;
	margin-right: 5px;
	top: 60px;
}

.dark-icon{
	width: 30px;
	height: auto;
	cursor: pointer;
	margin-right: 30px;
	margin-left: 5px;
	top: 60px;
}

.icons {
  display: flex;
  align-items: center;
}

.icons img {
  width: 40px; /* Adjust the width and height as needed */
  height: 40px;
  margin-right: 5px; /* Add spacing between the icons */
  cursor: pointer;
  border-radius: 8px;
}

.icons img:hover {
  background-color: #F9E9FF; /* Set the background color on hover */
}

.icons img.active {
  background-color: #F9E9FF; /* Set the active background color */
}

.navbar {
    list-style-type: none;
    margin-left: 100px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar li {
    padding: 10px;
}

.navbar li a {
    color: #311F41;
    text-decoration: none;
    background-color: transparent;
    padding: 10px;
    border: none;
    transition: background-color 0.3s;
	border-radius: 10px; /* Round the corners of the navbar links */
	text-align: right;
	font-family: 'Nunito', sans-serif;
}

/* Hover and Active states */
.navbar li a:hover,
.navbar li a :focus,
.navbar li a.active {
	
    background-color: #F9E9FF;
    color: #C7A9D3;
}

.hyperlink a {
	font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
	font-family: 'Nunito', sans-serif;
}

#home {
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#home h1 {
	max-width: 700px;
	margin: 0 auto;	
	font-size: 50px; /* Set the desired font size */
	margin-bottom: 40px; /* Add margin at the bottom of the h1 */
	color: #2B003B;
	font-family: 'Nunito', sans-serif;

}

 #home img {
    max-width: 800px; /* Set the maximum width of the image */
    height: auto; /* Allow the height to adjust proportionally */
    border-radius: 10px; /* Round the corners of the image */
	margin-bottom: 20px; /* Add margin at the bottom of the image */
}

#home h2 {
	max-width: 700px;
	margin: 0 auto;
	font-size: 40px; /* Set the desired font size */
	margin-top: 20px; /* Add margin at the top of the h3 */
    margin-bottom: 20px; /* Add margin at the bottom of the h3 */
	color: #2B003B;
	font-family: 'Nunito', sans-serif;
}

#home h3 {
	max-width: 700px;
	margin: 0 auto;
	font-size: 30px; /* Set the desired font size */
	margin-top: 20px; /* Add margin at the top of the h3 */
    margin-bottom: 20px; /* Add margin at the bottom of the h3 */
	color: #2B003B;
	font-family: 'Nunito', sans-serif;
}
  
#home p {
    /* Set the maximum width for the paragraph */
    margin: 0 auto; /* Center align the paragraph within the section */
	font-size: 20px; /* Set the desired font size */
	margin-top: 20px; /* Add margin at the top of the paragraph */
	color: #2B003B;
	max-width: 800px; /* Set the maximum width for the paragraph */
	text-align: justify;
	padding-left: 0px; /* Add padding on the left side */
    padding-right: 0px; /* Add padding on the right side */
	font-family: 'Nunito', sans-serif;
}

 #home p.lighter-paragraph{
    margin: 0 auto; /* Center align the paragraph within the section */
	font-size: 20px; /* Set the desired font size */
	margin-top: 30px; /* Add margin at the top of the paragraph */
	margin-bottom: 40px;
	max-width: 800px; /* Set the maximum width for the paragraph */
	color: #7F4893;
	font-family: 'Nunito', sans-serif;
}
	

#about {
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
    font-family: 'Nunito', sans-serif;
}

#about img {
    max-width: 900px; /* Set the maximum width of the image */
    height: auto; /* Allow the height to adjust proportionally */
    border-radius: 10px; /* Round the corners of the image */
	margin-bottom: 20px; /* Add margin at the bottom of the image */
}
#about h1 {
	max-width: 700px;
	margin: 0 auto;
	font-size: 50px; /* Set the desired font size */
	margin-top: 20px; /* Add margin at the top of the h3 */
    margin-bottom: 20px; /* Add margin at the bottom of the h3 */
	color: #2B003B;
	font-family: 'Nunito', sans-serif;
}

#about p {
    max-width: 800px; /* Set the maximum width for the paragraph */
    margin: 0 auto; /* Center align the paragraph within the section */
	font-size: 20px; /* Set the desired font size */
	margin-top: 20px; /* Add margin at the top of the paragraph */
	color: #2B003B;
	text-align: justify;
	padding-left: 0px; /* Add padding on the left side */
    padding-right: 0px; /* Add padding on the right side */
	font-family: 'Nunito', sans-serif;
}

#about a {
	font-size: 20px;
}


.container {
  display: flex;
  flex-direction: row; /* Place video and transcript side by side */
}

.video-container {
  display: flex;
  align-items: flex-start;
}
#youtube-player {
 flex: 3; /* Take up 75% of the container */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}


.transcript-container {
  flex: 1; /* Occupy 1/2 of the available width */
  overflow-y: auto; /* Add scroll if transcript overflows vertically */
   width: 400px; /* Set the width to 100% of the parent container */
   /* Automatically adjust height to match the video aspect ratio */
   max-height: 315px;
   background-color: #FCF3FF;
   color: #2B003B;
   border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;
}
.transcript {
  width: 85%; /* Adjust the width as needed */
  padding: 20px;
  
}

.transcript-line {
  margin-bottom: 10px;
  transition: font-weight 0.2s ease; /* Add transition effect */
}

.bold-line {
  width: 95%;
  font-weight: 700; /* Apply semi-bold styling */
  padding: 9px;
  text-align: left;
}

#featured{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#spot-illustrations{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#spreads{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
	
}

.top-row, .second-row, .third-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top of each row */
    margin-top: 0;
    margin-bottom: 0;
}

.top-row > .image, .second-row > .image, .third-row > .image {
    flex: 1;
    margin-right: 10px;
    margin-bottom: 10px;
}

.image {
    height: 250px; /* sets the image container height make sure it is in px not in */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
	position: relative;
}

.image img {
    max-width: 100%;
    height: 250px;
    width: auto;
    border-radius: 10px;
}


.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

.image:hover .image-overlay {
  opacity: 1;
}
.image:focus{
	outline-style: solid;
    outline-width: medium;
	outline-color: #7F4893;
	border-radius: 7px;
	border-color:#C7A9D3; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.image-description {
  color: #311F41;
  font-size: 16px;
  text-align: center; /* Align text in the center */
  padding: 10px;
  margin-top: 0; /* Add some spacing between heading and description */
  margin-bottom: 0;
}

image-overlay.show {
  display: flex;
}

.expanded-window {
  /* Existing styles */
  position: fixed;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background-color: #F1DEFF;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  z-index: 9999;
  display: none;
  grid-template-columns: auto auto;
  padding: 10px 15px 10px; /* Add padding to create margins */
  /* Add relative positioning to the expanded window */
}


.expanded-window img {
  width: calc(50% - 10px); /* Adjust the width to account for the margins */
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  grid-column: 1 / 2;
  grid-row: 1 / -1;
}

.expanded-window .text-container {
  padding: 20px; /* Adjust padding as desired */
  box-sizing: border-box;
  grid-column: 2 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.expanded-window .expanded-heading {
  margin-top: 0;
}

.expanded-window .expanded-description {
  margin-top: 10px;
}

.expanded-window .button-container {
  /* Existing styles */
  display: flex;
  justify-content: flex-end; /* Align buttons to the right side */
  margin-bottom: 10px;
  position: absolute; /* Position the buttons absolutely */
  top: 10px; /* Adjust the top position as desired */
  right: 10px; /* Adjust the right position as desired */
}

.expanded-window .button-container .svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expanded-window .prev-button,
.expanded-window .next-button,
.expanded-window .close-button {
  /* Existing styles */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #F1DEFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.expanded-window .prev-button svg,
.expanded-window .next-button svg,
.expanded-window .close-button svg {
  
  fill: #311F41; /* Adjust the color of the SVG icon */
  width: 20px !important;
  height: 20px !important;
}

.expanded-window .prev-button:hover,
.expanded-window .next-button:hover,
.expanded-window .close-button:hover {
  background-color: #F9E9FF;
}

.expanded-window .button-container .prev-button .svg-icon:hover,
.expanded-window .button-container .next-button .svg-icon:hover,
.expanded-window .button-container .close-button .svg-icon:hover {
  fill: #FFF; /* Adjust the color of the SVG icon on hover */
}

#covers{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#comics{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#oracle{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#oracle h1 {
	font-size: 50px;
	color: #2B003B;
}
#oracle p {
	font-size: 20px;
	color: #2B003B;
}

.card-container {
    display: flex;
    gap: 20px;
}

.card {
    width: 250px;
    height: 400px;
    background-color: #F9E9FF;
    cursor: pointer;
    position: relative;
	border-radius: 7px;
	border: 1px solid  #C7A9D3;
	border-width: inherit;
    overflow: hidden;
   
   
}

.card-back {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 7px;
    transition: transform 0.3s ease-in-out;
}

.card:hover .card-back {
    transform: scale(1.05);
}

.card:focus {
	outline-style: solid;
    outline-width: medium;
	outline-color: #7F4893;
	border-radius: 7px;
	border-color:#C7A9D3; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Focus overlay */
.card:focus::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #C7A9D3;
    border-radius: 12px;
    background-color: rgba(199, 169, 211, 0.2); /* Transparent overlay color */
    pointer-events: none; /* Allow interactions to pass through the overlay */
    z-index: -1; /* Place the overlay below the card content */
}

.card-info {
    text-align: center;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
	font-family: 'Nunito', sans-serif;
	color: #2B003B;
}

#flippedCardImage {
    width: 500px;
    height: 750px;
    margin-bottom: 10px;
	border-radius: 5px;
}

#closeCardButton {
    background-color: #C7A9D3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
	position: absolute;
    top: 10px;
    right: 10px;
	font-family: 'Nunito', sans-serif;
}

/* Hover effect */
#closeCardButton:hover {
    background-color: #311F41;
}

/* Focus styles */
#closeCardButton:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.card-meaning {
  font-size: 16px;
  line-height: 1.5;
  color: #311F41;
}

.card-name {
	 font-size: 50px;
  line-height: 1.5;
  color: #311F41;
}





#contact{
    padding: 50px;
    background-color: #F9E9FF;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

#contact h1 {
	font-size: 50px;
	color: #2B003B;
}

/* Style for the form container */
form {
    text-align: center;
    padding: 20px;
}


/* Style for form labels */
form label {
    display: block;
    margin-bottom: 5px;
	font-weight: bold;
    text-align: left;
	font-family: 'Nunito', sans-serif;
	color: #2B003B;
}

/* Style for form inputs and textarea */
form input[type="text"],
form input[type="email"],
form textarea {
     width: 100%; /* Adjust the width as needed */
    padding: 15px; /* Increase padding for a larger input area */
    margin-bottom: 20px; /* Increase margin for better spacing */
    border: 2px solid #C7A9D3;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
	background-color: white;
    font-size: 16px;
	font-family: 'Nunito', sans-serif;
}

/* Style for form inputs when filled */
form input[type="text"]:valid,
form input[type="email"]:valid {
    background-color: #FCF3FF;
}

/* Style for the message box */
form textarea {
    height: 150px; /* Set the desired height */
}

/* Style for placeholder text */
form input::placeholder,
form textarea::placeholder {
    color: #C7A9D3;
}

/* Clicked state */
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #7F4893;
    box-shadow: 0 0 5px rgba(199, 169, 211, 0.5);
}

/* Hover state */
form input:hover,
form textarea:hover {
    border-color: #7F4893;
}

/* Style for checkbox container */
.newsletter-label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
	position: relative;
}

/* Style for checkbox */
form input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    width: 20px;
    height: 20px;
    appearance: none; /* Hide default appearance */
    -webkit-appearance: none;
    border: 2px solid #C7A9D3; /* Checkbox border color */
    border-radius: 3px;
    transition: border-color 0.3s;
	background-color: white; /* Set background color to white by default */
   
}

/* Style for checked checkbox */
form input[type="checkbox"]:checked {
    border-color: #C7A9D3; /* Change border color when checked */
    background-color: #C7A9D3; /* Change background color when checked */
}

/* Style for the checkmark pseudo-element */
form input[type="checkbox"]:checked::before {
    content: "\2713"; /* Unicode character for checkmark */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    color: white; /* Color of the checkmark */
    font-size: 16px; /* Adjust the font size as needed */
}


/* Style for submit button */
form button {
    background-color: #C7A9D3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
	margin-left: 80px;
	margin-right: flex-end;
	font-family: 'Nunito', sans-serif;
}

/* Hover state for submit button */
form button:hover {
    background-color: #976b9e;
}


footer {
    background-color: #F1DEFF;
    color: #311F41;
    text-align: center;
    padding: 20px;
	border-radius: 10px;
	margin-top: 10px;
}

