/*
Theme Name: SuddenLove Theme
Theme URI: http://localhost/suddenlove
Description: A modular music band theme that will evolve through phases
Author: Your Name
Template: twentytwentyfour
Version: 1.0
*/

/* Import parent theme styles */
@import url('../twentytwentyfour/style.css');

/* Color scheme - Psych-rock theme */
:root {
  --sl-purple: #5D3FD3;
  --sl-red: #FF1744;
  --sl-blue: #1E88E5;
  --sl-gold: #FFD700;
  --sl-dark: #121212;
  --sl-light: #F5F5F5;
}

/* Lightbox navigation controls */
.sl-lightbox-prev,
.sl-lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
}

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

.sl-lightbox-prev {
  left: 0;
}

.sl-lightbox-prev:hover,
.sl-lightbox-next:hover {
  background-color: rgba(93, 63, 211, 0.4);
  color: var(--sl-gold);
}

/* Base styling will be expanded through phases */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--sl-dark);
  color: var(--sl-light);
}

/* Hide default WordPress footer elements and replace with custom copyright */
.site-info, 
.site-footer .copyright-footer,
.site-footer .powered-by,
.site-info a[href^="http://wordpress.org/"] {
    display: none !important;
}