/*
===========================================================
Author: Karlee Wiesehan
Date Created: December 1, 2025
Program Purpose:
This CSS file controls the visual design of the slideshow
project. It applies a plain, minimal lavender color scheme
and styles the layout, image frame, captions, and buttons.
===========================================================
*/
/* Overall page styling */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #F3ECFF; /* light lavender background */
  color: #333333;
}
/* Center the main content and limit width */
.page-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 16px;
}
/* Page title styling */
.page-title {
  text-align: center;
  color: #5D4B8A; /* darker lavender/purple for contrast */
}
/* Slideshow section */
.slideshow-container {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* Frame around the image and caption */
.slide-frame {
  margin: 0;
  text-align: center;
}
/* Slideshow image */
#slide-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 4px solid #D3C4FF; /* soft lavender border */
}
/* Caption text */
#slide-caption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555555;
}
/* Controls (buttons) */
.controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
/* Basic button styling */
.controls button {
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid #5D4B8A;
  background-color: #E2D7FF;
  color: #333333;
  cursor: pointer;
}
/* Button hover effect */
.controls button:hover {
  background-color: #D3C4FF;
}
/* Small description text under slideshow */
.slideshow-note {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
  color: #666666;
}