/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Scheme - Burgundy & Gold (different from previous sites) */
  --primary: #8B0000;
  --secondary: #DAA520;
  --text-dark: #333333;
  --text-light: #777777;
  --background: #f8f5f2;
  --card-bg: #ffffff;
  --accent: #B22222;
  --gradient: linear-gradient(135deg, var(--primary), #5d0000);
  --gold-gradient: linear-gradient(135deg, #DAA520, #F5DEB3);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

/* Button Styles */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

.cta-button:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
  color: white;
}

.cta-button.large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--shadow);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8f5f2"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23eee" stroke-width="1"/></svg>');
  background-size: 20px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-content h1 span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(218, 165, 32, 0.3);
  z-index: -1;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
  max-width: 100%;
}

.abstract-shapes {
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.05));
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border-radius: 50%;
  color: var(--primary);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: var(--background);
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-placeholder {
  height: 200px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder svg {
  width: 100%;
  height: 100%;
}

.gallery-item h3 {
  padding: 15px;
  text-align: center;
  margin-bottom: 0;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -20px;
  width: 2px;
  background-color: #e0e0e0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  margin-right: 25px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 5px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--background);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-item p {
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-section h2:after {
  display: none;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo span {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
