/* Basic styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4CAF50; /* Green */
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

h1, h2 {
    color: #333; /* Dark gray */
}

footer {
    background-color: #333; /* Dark gray */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

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

.mySlides {
    display: none;
}

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

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white; /* Change color to white on hover */
}


.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

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

/* Add order button styles */
.order-button {
    text-align: center;
    margin-top: 20px; /* Adjust as needed */
}

.view-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50; /* Green */
    color: #fff;
    border: 2px solid #4CAF50; /* Green */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.view-more:hover {
    background-color: #fff; /* Hover background color */
    color: #4CAF50; /* Hover text color */
    border-color: #4CAF50; /* Hover border color */
}

/* Popup Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    animation: fadeIn 0.5s ease; /* Fade in animation */
}

.modal-content {
    background-color: #000; /* Black background */
    color: red; /* Red text color */
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    border-radius: 10px;
    animation: slideIn 0.5s ease; /* Slide in animation */
    font-family: Arial, sans-serif; /* Use a different font */
    font-size: 18px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease; /* Add transition for smooth animation */
}

.close:hover,
.close:focus {
    color: #fff; /* White text color on hover */
    text-decoration: none;
    cursor: pointer;
    transform: rotate(180deg); /* Rotate the close icon on hover */
}


.slide-title {
    text-align: center;
    color: red;
    font-family: Arial, sans-serif; /* Use a different font */
    font-size: 18px;
    margin-top: 10px; /* Adjust spacing between title and image */
    padding: 5px 10px; /* Add padding to the title */
    border: 2px solid red; /* Add a red border */
    background-color: #87CEEB; /* Add a sky blue background color */
    border-radius: 5px; /* Add border radius */
    animation: blink 1s infinite alternate; /* Blinking animation */
}

html {
    scroll-behavior: smooth;
}

  #stage {
    margin: 1em auto;
    width: 382px;
    height: 292px;
  }

  #stage a {
    position: absolute;
  }
  #stage a img {
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
  }

  #stage a:nth-of-type(1) {
    animation-name: fader;
    animation-delay: 4s;
    animation-duration: 1s;
    z-index: 20;
  }
  #stage a:nth-of-type(2) {
    z-index: 10;
  }
  #stage a:nth-of-type(n+3) {
    display: none;
  }

  @keyframes fader {
    from { opacity: 1.0; }
    to   { opacity: 0.0; }
  }