/* Main styles for KegelMaster website */
:root {
  --primary: #B4FFE2;
  --accent: #C7B6FF;
  --background: #1D1B2E;
  --text: #F8F8F2;
  --button: #FF874F;
  --max-width: 1200px;
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  bottom: -10px;
  left: 0;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

/* Header */
header {
  background-color: var(--background);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 60px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.8)), url('../img/aHH8x3.jpg');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--primary);
  max-width: 650px;
  margin: 0 auto;
}

.hero p {
  margin: 0 auto;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--button);
  color: var(--text);
  text-decoration: none;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.btn:hover {
  background-color: #e57547;
}

/* About Section */
.about {
  background-color: rgba(180, 255, 226, 0.05);
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Services Section */
.services {
  background-color: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(199, 182, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid var(--accent);
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
}

/* Testimonials Section */
.testimonials {
  background-color: rgba(180, 255, 226, 0.05);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(29, 27, 46, 0.8);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--primary);
}

.testimonial-author {
  font-weight: bold;
  margin-top: 1rem;
  color: var(--accent);
}

/* How it works Section */
.how-it-works {
  background-color: var(--background);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  color: var(--background);
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Order Form Section */
.order-form {
  background-color: rgba(199, 182, 255, 0.05);
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--border-radius);
  border: 1px solid var(--accent);
  background-color: rgba(29, 27, 46, 0.8);
  color: var(--text);
  font-family: inherit;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

/* FAQ Section */
.faq {
  background-color: var(--background);
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  background-color: rgba(199, 182, 255, 0.05);
}

.faq-question {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: rgba(29, 27, 46, 0.9);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--accent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  position: relative;
  margin-bottom: 1.5rem;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  bottom: -8px;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(199, 182, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(29, 27, 46, 0.95);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  border-top: 1px solid var(--primary);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-text {
  margin-right: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
} 