/*!
Theme Name: Formstand
Description: A custom WordPress theme for Formstand Arena
Version: 1.0.0
Author: Formstand Team
Text Domain: formstand
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: url(img/bg.png) center left no-repeat;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #8e7ee9;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #005a87;
  text-decoration: underline;
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background-color: #8e7ee9;
  color: white;
  padding: 1rem 0;
}
.site-header .site-branding {
  text-align: center;
}
.site-header .site-branding .site-title {
  margin: 0;
  font-size: 2rem;
}
.site-header .site-branding .site-title a {
  color: white;
  text-decoration: none;
}
.site-header .site-branding .site-title a:hover {
  text-decoration: underline;
}
.site-header .site-branding .site-description {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  opacity: 0.9;
}

.site-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem 0;
}

.site-footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-navigation ul li {
  margin: 0 1rem;
}
.main-navigation ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.main-navigation ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.entry {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}
.entry:last-child {
  border-bottom: none;
}

.entry-header {
  margin-bottom: 1rem;
}
.entry-header .entry-title {
  margin-bottom: 0.5rem;
}
.entry-header .entry-title a {
  color: #333333;
}
.entry-header .entry-title a:hover {
  color: #8e7ee9;
}
.entry-header .entry-meta {
  font-size: 0.875rem;
  color: #6c757d;
}

.entry-content {
  margin-bottom: 1rem;
}
.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-footer {
  font-size: 0.875rem;
  color: #6c757d;
}

.widget-area {
  padding: 2rem 0;
}

.widget {
  margin-bottom: 2rem;
}
.widget .widget-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.btn,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid #8e7ee9;
  border-radius: 4px;
  background-color: #8e7ee9;
  color: white;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover, .btn:focus,
button:hover,
button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
input[type=button]:hover,
input[type=button]:focus {
  background-color: transparent;
  color: #8e7ee9;
  text-decoration: none;
}

.form-control,
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.form-control:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: #8e7ee9;
  -webkit-box-shadow: 0 0 0 2px rgba(142, 126, 233, 0.25);
          box-shadow: 0 0 0 2px rgba(142, 126, 233, 0.25);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #8e7ee9 0%, #005a87 100%);
  color: white;
  padding: 2rem 0;
}
.hero-section .hero-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 2rem;
}
.hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-section .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 2rem;
  min-height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333333;
  font-weight: 600;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #8e7ee9;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.about-section .about-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3rem 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.about-section .about-content .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #666;
}
.about-section .about-content .about-features {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
.about-section .about-content .about-features .feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.about-section .about-content .about-features .feature-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.about-section .about-content .about-features .feature-item h3 {
  color: #8e7ee9;
  margin-bottom: 0.5rem;
}
.about-section .about-content .about-features .feature-item p {
  margin: 0;
  color: #666;
}

.services-section {
  padding: 5rem 0;
}
.services-section .services-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.services-section .services-grid .service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
.services-section .services-grid .service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.services-section .services-grid .service-card h3 {
  color: #8e7ee9;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.services-section .services-grid .service-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.schedule-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.schedule-section .schedule-table {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.schedule-section .schedule-table .schedule-day {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.schedule-section .schedule-table .schedule-day h4 {
  color: #8e7ee9;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}
.schedule-section .schedule-table .schedule-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.schedule-section .schedule-table .schedule-day ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.schedule-section .schedule-table .schedule-day ul li:last-child {
  border-bottom: none;
}

.contact-section {
  padding: 5rem 0;
}
.contact-section .contact-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-section .contact-content .contact-info {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
.contact-section .contact-content .contact-info .contact-item h4 {
  color: #8e7ee9;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.contact-section .contact-content .contact-info .contact-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}
.contact-section .contact-content .contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-content .contact-form h3 {
  color: #8e7ee9;
  margin-bottom: 2rem;
  text-align: center;
}
.contact-section .contact-content .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-section .contact-content .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333333;
}
.contact-section .contact-content .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn.btn-primary {
  background: #8e7ee9;
  color: white;
  border-color: #8e7ee9;
}
.btn.btn-primary:hover {
  background: transparent;
  color: #8e7ee9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(142, 126, 233, 0.3);
          box-shadow: 0 4px 15px rgba(142, 126, 233, 0.3);
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }
  .site-header .site-title {
    font-size: 1.5rem;
  }
  .main-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-navigation ul li {
    margin: 0.5rem 0;
  }
  .site-main {
    padding: 1rem 0;
  }
  .content-area {
    padding: 0rem;
  }
  .hero-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 3rem 0;
  }
  .hero-section .hero-content {
    padding: 0 1rem;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-section .hero-image {
    padding: 0 1rem;
    margin-top: 2rem;
  }
  .about-section .about-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-section .contact-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .services-section .services-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .schedule-section .schedule-table {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}