/*!
Theme Name: Orchestra of Ukraine
Theme URI: https://orchestra-ukraine.local
Author: Orchestra Ukraine
Author URI: https://orchestra-ukraine.local
Description: A professional, bilingual (Ukrainian/English) website for Orchestra of Ukraine with animated musical notes, concert slideshow, and responsive design.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: orchestra-ukraine
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* Orchestra Ukraine Theme Styles */

:root {
  --primary: #8b5a3c;
  --primary-foreground: #faf8f3;
  --accent: #d4af37;
  --accent-foreground: #1a1410;
  --background: #f5f1e8;
  --foreground: #1a1410;
  --card: #ffffff;
  --muted: #e8e4d9;
  --muted-foreground: #6b5d4f;
  --border: #ddd8ce;
  --radius: 0.65rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lora", serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.site-logo .note {
  font-size: 1.5rem;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.language-switcher button {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.language-switcher button.active {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-primary:hover {
  background-color: #c9a227;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Animated Notes */
.musical-notes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0.3;
}

.note {
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
}

.note:nth-child(2) {
  animation-delay: 0.5s;
}

.note:nth-child(3) {
  animation-delay: 1s;
}

.note:nth-child(4) {
  animation-delay: 1.5s;
}

.note:nth-child(5) {
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* Poster/Slideshow Section */
.poster-section {
  padding: 4rem 2rem;
  background-color: var(--card);
}

.poster-container {
  max-width: 1280px;
  margin: 0 auto;
}

.poster-title {
  text-align: center;
  margin-bottom: 3rem;
}

.slideshow-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.slideshow-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slideshow-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.slideshow-nav:hover {
  background-color: white;
}

.slideshow-nav.prev {
  left: 1rem;
}

.slideshow-nav.next {
  right: 1rem;
}

.slideshow-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: var(--border);
}

.indicator.active {
  background-color: var(--accent);
}

.concert-details {
  space-y: 1.5rem;
}

.concert-date {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.concert-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.concert-location {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.concert-description {
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: var(--background);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.about-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Contacts Section */
.contacts-section {
  padding: 4rem 2rem;
  background-color: var(--card);
}

.contacts-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contacts-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.contact-info:hover {
  background-color: var(--background);
}

.contact-icon {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.contact-value {
  font-size: 1.125rem;
  color: var(--foreground);
  font-weight: 500;
}

.contact-form {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--card);
  color: var(--foreground);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.site-footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
  color: rgba(245, 241, 232, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--background);
}

.footer-links {
  list-style: none;
  space-y: 0.5rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(245, 241, 232, 0.2);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(245, 241, 232, 0.4);
}

.footer-divider {
  border-top: 1px solid rgba(245, 241, 232, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.125rem;
  }

  .slideshow-wrapper {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }
}
