/* Fancy volleyball script styling with authentic California beach colors */
h1, .display-3, .display-4, .page-title {
  font-family: 'Pacifico', cursive !important;
  letter-spacing: 0.5px;
  color: #17a2b8 !important; /* Classic California teal */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h2, h3, h4, .lead {
  font-family: 'Inter', sans-serif;
  color: #20c997; /* Beach teal */
}

/* Classic California beach color palette */
body {
  background: linear-gradient(135deg, #fdf6e3 0%, #f7f3e9 100%); /* Warm sand tones */
  color: #495057;
  min-height: 100vh;
}

.wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  margin: 15px auto;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* Header styling with classic beach colors */
.header {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%); /* California teal gradient */
  color: white;
  padding: 25px 0;
  border-radius: 8px 8px 0 0;
}

.header h1 {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header, .header * {
  color: white !important;
}

.header .main-menu ul li a {
  color: white !important;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 8px 12px;
}

.header .main-menu ul li a:hover {
  background: rgba(255,255,255,0.2) !important;
  color: white !important;
}

/* Navigation styling - classic beach style */
.main-menu ul li a {
  color: #17a2b8 !important;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.main-menu ul li a:hover {
  background: #e9ecef;
  color: #20c997 !important;
}

/* Content areas */
.content {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 6px;
  margin: 15px 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

/* Buttons and links - classic California colors */
.btn, .button {
  background: #fd7e14; /* Classic California orange */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn:hover, .button:hover {
  background: #e55d00;
}

/* Links - teal theme */
a {
  color: #17a2b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #20c997;
  text-decoration: underline;
}

.single .container {
  max-width: 960px;
}

figure img { 
  border-radius: 10px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

figcaption { 
  opacity: 0.85; 
  color: #546e7a;
  font-style: italic;
}

.ad-slot { 
  text-align: center; 
}

/* Footer styling */
.footer {
  background: #343a40;
  color: #f8f9fa;
  padding: 30px 0;
}

.footer, .footer * {
  color: #f8f9fa !important;
}

.footer h3 {
  color: #20c997 !important;
}

.footer a {
  color: #17a2b8 !important;
}

.footer a:hover {
  color: #20c997 !important;
}

/* Special accent elements */
.intro {
  background: linear-gradient(135deg, #e0f2f1 0%, #e8f5e8 100%);
  border-left: 5px solid #4fc3f7;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .wrapper {
    margin: 10px;
    border-radius: 5px;
  }
  
  .header {
    border-radius: 5px 5px 0 0;
  }
}