/*
Theme Name: Onalaska UMC Theme
Description: Custom WordPress theme for Onalaska United Methodist Church featuring modern design, event management, and community engagement.
Version: 1.0
Author: OUMC Web Team
*/

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Muli', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

/* OUMC Stained Glass Color Palette */
:root {
  /* Primary Colors from Stained Glass */
  --glass-azure: #0099CC;        /* Primary blue from glass */
  --glass-crimson: #CC2244;      /* Deep red from glass */
  --glass-gold: #FFBB33;         /* Warm gold from glass */
  --glass-purple: #6644BB;       /* Royal purple from glass */
  --glass-teal: #22AA88;         /* Emerald teal from glass */
  
  /* Brand Colors (harmonized with glass) */
  --oumc-primary: #CC2244;       /* Glass crimson as primary */
  --oumc-primary-hover: #AA1B36; /* Darker for hover states */
  --oumc-secondary: #0099CC;     /* Glass azure as secondary */
  --oumc-accent: #FFBB33;        /* Glass gold as accent */
  --oumc-accent-hover: #E6A82E;  /* Darker gold for hover */
  
  /* Supporting Colors */
  --glass-purple-light: #8866DD; /* Lighter purple for highlights */
  --glass-teal-light: #44BBAA;   /* Lighter teal for backgrounds */
  --glass-azure-light: #33AADD;  /* Lighter azure for sections */
  
  /* Neutral Colors (harmonized) */
  --text-dark: #2C2C54;          /* Deep purple-gray */
  --text-medium: #5C5C7A;        /* Medium purple-gray */
  --background-white: #ffffff;
  --background-light: #F7F9FF;   /* Slightly blue-tinted white */
  --background-accent: #FFF9F0;  /* Warm white with gold tint */
  --border-light: #E6E9F5;       /* Light blue-gray border */
  
  /* Semantic Colors */
  --success: var(--glass-teal);
  --warning: var(--glass-gold);
  --error: var(--glass-crimson);
  --info: var(--glass-azure);
}

/* Header and Navigation */
.site-header {
  background-color: var(--background-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
}

/* Home Icon Styles */
.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #333;
}

.home-link:hover {
  background-color: var(--glass-azure);
  color: white;
  transform: scale(1.05);
}

.church-icon {
  width: 28px;
  height: 28px;
  transition: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 0.5rem;
}

/* Main Navigation */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--oumc-primary);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--oumc-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 80%;
}

/* Button Styles */
.btn-primary {
  background-color: var(--oumc-primary);
  color: white;
  border: 2px solid var(--oumc-primary);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--oumc-accent);
  border-color: var(--oumc-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--oumc-secondary);
  border: 2px solid var(--oumc-secondary);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--oumc-secondary);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Primary CTA Button - Inspired by v3 "Plan Your Visit" Design */
.primary-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1565c0 0%, #7b1fa2 25%, #ff5722 50%, #ff8f00 75%, #00bcd4 100%);
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin: 0.25rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
}

.primary-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  color: white !important;
  text-decoration: none !important;
}

.primary-cta-button:active {
  transform: translateY(0);
}

.primary-cta-button:focus {
  outline: 3px solid rgba(255,255,255,0.3);
  outline-offset: 2px;
}

/* Navigation Give button hover effect */
.nav-menu a[href*="eservicepayments"]:hover,
.mobile-nav-menu a[href*="eservicepayments"]:hover {
  background: linear-gradient(135deg, #1565c0 0%, #7b1fa2 25%, #ff5722 50%, #ff8f00 75%, #00bcd4 100%) !important;
  color: white !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}


/* Image-based Action Blocks */
.action-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0 20px;
}

.action-block {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.action-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.action-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: white;
  z-index: 2;
}

.action-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.action-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.4;
}

.action-cta {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-cta:hover {
  background-color: white;
  color: var(--text-dark);
  border-color: white;
  transform: translateY(-2px);
}

.action-block.featured {
  grid-column: span 2;
  min-height: 400px;
}

/* Text Above Image Layout for All Action Blocks */
.text-above-block {
  display: flex;
  flex-direction: column;
  background-image: none !important;
}

.action-text-above {
  padding: 5px 30px;
  color: white;
}

/* Color variants for different blocks */
.action-text-above.crimson {
  background: var(--glass-crimson);
}

.action-text-above.azure {
  background: var(--glass-azure);
}

.action-text-above.teal {
  background: var(--glass-teal);
}

.action-text-above.purple {
  background: var(--glass-purple);
}

.action-text-above.gold {
  background: var(--glass-gold);
}

.action-text-above .action-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 60px;
}

.action-text-above .action-description {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 0;
  line-height: 1.4;
  color: white;
}

.action-text-above .action-cta {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  font-size: 0.75rem;
  white-space: nowrap;
  min-width: fit-content;
}

.action-text-above .action-cta:hover {
  background-color: white;
  color: inherit;
  border-color: white;
  transform: translateY(-2px);
}

/* Specific hover colors for each variant */
.action-text-above.crimson .action-cta:hover {
  color: var(--glass-crimson);
}

.action-text-above.azure .action-cta:hover {
  color: var(--glass-azure);
}

.action-text-above.teal .action-cta:hover {
  color: var(--glass-teal);
}

.action-text-above.purple .action-cta:hover {
  color: var(--glass-purple);
}

.action-text-above.gold .action-cta:hover {
  color: var(--glass-gold);
}

.action-image {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

/* Callout Boxes */
.callout-box {
  background-color: white;
  border: 4px solid var(--oumc-primary);
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.callout-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  margin: 2rem 0;
}

/* Footer */
.site-footer {
  background-color: var(--background-light);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section h3 {
  color: var(--oumc-primary);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-section a {
  color: var(--text-dark);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--oumc-primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .action-blocks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .action-block.featured {
    grid-column: span 1;
    min-height: 300px;
  }
  
  .action-title {
    font-size: 1.8rem;
  }
  
  .action-content {
    padding: 20px;
  }
  
  .action-text-above .action-title {
    font-size: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }
  
  .action-text-above .action-cta {
    align-self: flex-end;
    font-size: 0.7rem;
    padding: 10px 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 12px;
  }
}

/* Form Styles */
.form-input {
  border: 2px solid var(--border-light);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  width: 100%;
  margin-bottom: 16px;
}

.form-input:focus {
  border-color: var(--oumc-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(204,34,68,0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

/* Hero Section with Stained Glass Background */
.stained-glass-hero {
  position: relative;
  min-height: 500px;
  background-image: url('./assets/images/stained-glass.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0 -20px 3rem -20px;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  padding: 2rem;
  color: white;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

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

.hero-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-btn.btn-primary {
  background-color: transparent;
  color: white;
  border: 3px solid white;
}

.hero-btn.btn-primary:hover {
  background-color: white;
  color: var(--oumc-primary);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.hero-btn.btn-secondary {
  background-color: transparent;
  color: white;
  border: 3px solid white;
}

.hero-btn.btn-secondary:hover {
  background-color: white;
  color: var(--oumc-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Stained Glass Header for Other Pages */
.page-header-stained-glass {
  position: relative;
  min-height: 300px;
  background-image: url('./assets/images/stained-glass.jpg');
  background-size: cover;
  background-position: center;
  margin: 0 -20px 2rem -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-stained-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-header-stained-glass .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}

.page-header-stained-glass h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-header-stained-glass p {
  color: white;
  opacity: 0.9;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Mobile Responsiveness for Hero */
@media (max-width: 768px) {
  .stained-glass-hero {
    min-height: 400px;
    margin: 0 -10px 2rem -10px;
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem 0;
  }
  
  .page-header-stained-glass {
    min-height: 250px;
    margin: 0 -10px 1.5rem -10px;
    background-attachment: scroll;
  }
  
  .page-header-stained-glass h1 {
    font-size: 2rem;
  }
}

/* Accessibility */
.btn-primary:focus,
.btn-secondary:focus {
  outline: 3px solid var(--oumc-accent);
  outline-offset: 2px;
}

.action-block:focus {
  outline: 3px solid var(--oumc-accent);
  outline-offset: 4px;
}

/* Stained Glass Color Sections */
.section-azure {
  background: var(--background-white);
  color: var(--text-dark);
}

.section-teal {
  background: var(--background-white);
  color: var(--text-dark);
}

.section-gold {
  background: var(--background-white);
  color: var(--text-dark);
}

.section-purple {
  background: var(--background-white);
  color: var(--text-dark);
}

/* Callout Box Styling for Purple Section */
.callout-box.section-purple {
  background: var(--glass-purple) !important;
  color: white !important;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--glass-purple);
}

.callout-box.section-purple h2,
.callout-box.section-purple p {
  color: white !important;
}

/* Color-themed headings */
.heading-azure { color: var(--glass-azure); }
.heading-crimson { color: var(--glass-crimson); }
.heading-gold { color: var(--glass-gold); }
.heading-purple { color: var(--glass-purple); }
.heading-teal { color: var(--glass-teal); }

/* Utility Classes for Common Patterns */
.text-center { text-align: center; }
.text-center-section { text-align: center; margin-bottom: 2rem; }
.section-spacing { margin: 3rem 0; }
.section-spacing-large { margin: 4rem 0; }

/* Common Grid Layouts */
.grid-auto-fit-250 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-auto-fit-300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-auto-fit-350 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Content Width Containers */
.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h1,
.section-header h2 {
  color: var(--glass-crimson);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  margin: 0 auto;
}

/* Service Time Cards */
.service-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: var(--glass-crimson);
  margin-bottom: 1rem;
}

.service-card .time {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.service-card .description {
  color: #666;
}

/* Info Cards */
.info-card {
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

/* Contact Section Styling */
.contact-section {
  background: var(--glass-crimson);
  color: white;
  border: none;
  text-align: center;
}

.contact-section h2,
.contact-section h4 {
  color: white;
}

.contact-section p {
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Button Groups */
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .button-group .btn-primary,
  .button-group .btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Accent borders */
.border-azure { border-color: var(--glass-azure) !important; }
.border-crimson { border-color: var(--glass-crimson) !important; }
.border-gold { border-color: var(--glass-gold) !important; }
.border-purple { border-color: var(--glass-purple) !important; }
.border-teal { border-color: var(--glass-teal) !important; }

/* Additional teal-themed button styles for variety */
.btn-teal {
  background-color: var(--glass-teal);
  color: white;
  border: 2px solid var(--glass-teal);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-teal:hover {
  background-color: var(--glass-teal-light);
  border-color: var(--glass-teal-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-teal-secondary {
  background-color: transparent;
  color: var(--glass-teal);
  border: 2px solid var(--glass-teal);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-teal-secondary:hover {
  background-color: var(--glass-teal);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Additional button color variants */
.btn-purple {
  background-color: var(--glass-purple);
  color: white;
  border: 2px solid var(--glass-purple);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-purple:hover {
  background-color: var(--glass-purple-light);
  border-color: var(--glass-purple-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-gold {
  background-color: var(--glass-gold);
  color: white;
  border: 2px solid var(--glass-gold);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-gold:hover {
  background-color: var(--oumc-accent-hover);
  border-color: var(--oumc-accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Newsletter Signup Form Styles */
.oumc-newsletter-signup form input[type="email"] {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.oumc-newsletter-signup form input[type="email"]:focus {
  outline: none;
  border-color: var(--glass-teal);
  box-shadow: 0 0 0 2px rgba(34, 170, 136, 0.2);
}

.oumc-newsletter-signup form input[type="submit"] {
  transition: all 0.3s ease;
}

.oumc-newsletter-signup form input[type="submit"]:hover {
  background-color: var(--glass-teal) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(34, 170, 136, 0.3);
}

.oumc-newsletter-signup form input[type="submit"]:active {
  transform: translateY(0);
}

/* Mobile responsive styles for newsletter form */
@media (max-width: 768px) {
  .oumc-newsletter-signup form > div {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .oumc-newsletter-signup form input[type="email"],
  .oumc-newsletter-signup form input[type="submit"] {
    width: 100% !important;
    flex: none !important;
  }
}