/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

:root {
  --fcr-primary-color: #0f172a; /* Deep royal blue */
  --fcr-accent-color: #d4af37;  /* Gold */
  --fcr-text-color: #334155;    /* Dark gray for text */
  --fcr-light-bg: #f8fafc;      /* Very light gray/blue */
  --fcr-white: #ffffff;
  --fcr-border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--fcr-text-color);
  background-color: var(--fcr-light-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--fcr-primary-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
.fcr-site-header {
  background-color: var(--fcr-primary-color);
  color: var(--fcr-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--fcr-accent-color);
}

.fcr-logo-wrap {
  display: flex;
  flex-direction: column;
}

.fcr-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fcr-accent-color);
  letter-spacing: 2px;
}

.fcr-logo-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cbd5e1;
}

.fcr-badge-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fcr-badge {
  background-color: transparent;
  border: 1px solid var(--fcr-accent-color);
  color: var(--fcr-accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.fcr-hero-section {
  background-color: var(--fcr-primary-color);
  color: var(--fcr-white);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.fcr-hero-kicker {
  font-size: 1rem;
  color: var(--fcr-accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: inline-block;
}

.fcr-hero-title {
  font-size: 4rem;
  color: var(--fcr-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.fcr-hero-desc {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #cbd5e1;
}

.fcr-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.fcr-hero-info-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.fcr-hero-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--fcr-accent-color);
}

.fcr-hero-info-title {
  color: var(--fcr-accent-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fcr-hero-info-text {
  font-size: 0.95rem;
  color: #f1f5f9;
}

/* Common Section Styles */
.fcr-content-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fcr-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.fcr-section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.fcr-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--fcr-accent-color);
}

.fcr-section-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Card Grids */
.fcr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fcr-feature-card {
  background-color: var(--fcr-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}

.fcr-feature-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--fcr-accent-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.fcr-card-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.fcr-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fcr-card-text {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.fcr-card-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}

.fcr-card-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fcr-accent-color);
  font-size: 1.2rem;
  line-height: 1;
}

/* Alternate Section Background */
.fcr-alt-bg {
  background-color: var(--fcr-white);
}
.fcr-alt-bg .fcr-feature-card {
  background-color: var(--fcr-light-bg);
}

/* Footer */
.fcr-site-footer {
  background-color: var(--fcr-primary-color);
  color: var(--fcr-white);
  padding: 4rem 2rem 2rem;
  border-top: 5px solid var(--fcr-accent-color);
}

.fcr-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fcr-footer-slogan {
  text-align: center;
  font-size: 2rem;
  color: var(--fcr-accent-color);
  margin-bottom: 3rem;
}

.fcr-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fcr-footer-col h4 {
  color: var(--fcr-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fcr-footer-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.fcr-contact-list li {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.fcr-contact-label {
  display: block;
  color: var(--fcr-accent-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.fcr-nav-list li {
  margin-bottom: 0.8rem;
}

.fcr-nav-list a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.fcr-nav-list a:hover {
  color: var(--fcr-accent-color);
}

.fcr-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .fcr-hero-grid,
  .fcr-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fcr-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fcr-hero-title {
    font-size: 3rem;
  }
  .fcr-hero-grid,
  .fcr-card-grid {
    grid-template-columns: 1fr;
  }
  .fcr-site-header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .fcr-footer-grid {
    grid-template-columns: 1fr;
  }
}
