﻿/* ---------------- Body & Fonts ---------------- */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
}

/* ---------------- Header & Footer ---------------- */
header, footer {
  background-color: #1e1e1e;
  color: white;
  padding: 1rem 0;
}

h1, h2 {
  color: #27a3d9;
  margin: 0.5rem 0;
}

a {
  color: #27a3d9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------------- Navigation ---------------- */
nav {
  background: #111;
  padding: 15px 20px;
  text-align: center;
  border-radius: 8px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* ---------------- Containers ---------------- */
.container {
  padding: 1rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.container h1,
.container h2 {
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

/* ---------------- Lists & Galleries ---------------- */
ul {
  margin-left: 1.5rem;
}

.gallery-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.gallery-vertical img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ---------------- Review Stars ---------------- */
.review-stars {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  letter-spacing: 3px;
}

.star-rating {
  font-size: 40px;
  letter-spacing: 4px;
  color: #ff2a2a;
  text-shadow: 0 0 6px rgba(255,0,0,0.6);
}

.review-score {
  font-size: 18px;
  color: #555;
}

/* ---------------- Review Cards / Grid ---------------- */
.reviews-grid, .reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-box, .review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  line-height: 1.6;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-box:hover, .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.review-box p, .review-card p {
  margin: 8px 0;
  font-size: 16px;
  color: #222;
}

.review-box strong {
  display: block;
  margin-top: 8px;
  color: #333;
}

.review-box .review-stars-small, .review-card::before {
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review-card::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 0 4px rgba(255,215,0,0.6);
  text-align: left;
}

/* ---------------- CTA Buttons ---------------- */
.review-cta {
  text-align: center;
  grid-column: 1 / -1;
  margin-top: 40px;
  padding: 30px;
  background: #111;
  color: white;
  border-radius: 10px;
}

.review-cta h3 {
  margin-bottom: 15px;
  color: #27a3d9;
}

.review-cta p {
  margin-bottom: 15px;
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0f0c36;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #a71d1d;
}

/* ---------------- FAQ Accordion ---------------- */
.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border: none;
  background: #0f0c36;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

.accordion-toggle:hover {
  background: #63a2d4;
  color: #0f0c36;
}

.accordion-toggle.active {
  background: #8b0000;
  color: #fff;
}

.accordion-content {
  display: none;
  padding: 0.75rem 1rem;
  background: #bed7eb;
  color: #0f0c36;
  border-left: 3px solid #27a3d9;
  border-radius: 0 5px 5px 5px;
  margin-bottom: 0.5rem;
}

/* ---------------- Back to Top ---------------- */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #27a3d9;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

#backToTop:hover {
  background-color: #1e88c9;
}

/* ---------------- Forms ---------------- */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
}

button {
  padding: 0.75rem;
  background-color: #c62828;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #a71d1d;
}

.formsite-wrapper {
  max-width: 600px;
  margin: 1rem auto;
}