/*
 * Girona Radtouren – Hauptstylesheet
 * Version: 1.0.0
 */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  --primary:        #1B4332;
  --primary-light:  #2D6A4F;
  --primary-dark:   #0F2A1F;
  --secondary:      #FF6B35;
  --secondary-dark: #E05A27;
  --accent:         #74C69D;
  --light:          #F4F8F5;
  --white:          #FFFFFF;
  --dark:           #1A1A1A;
  --gray:           #5C6370;
  --light-gray:     #E9EEF0;
  --border:         #D5DDE0;
  --shadow:         0 4px 20px rgba(0,0,0,0.09);
  --shadow-hover:   0 10px 35px rgba(0,0,0,0.16);
  --radius:         12px;
  --radius-sm:      6px;
  --transition:     all 0.3s ease;
  --font-main:      'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading:   Georgia, 'Times New Roman', serif;
  --max-width:      1200px;
  --header-h:       68px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--primary-dark);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

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

/* =====================================================
   LAYOUT HELPERS
   ===================================================== */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 22px; }

.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-light { background: var(--light); }

.section-dark          { background: var(--primary); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3       { color: var(--white); }

.section-title         { text-align: center; margin-bottom: 55px; }
.section-title h2      { margin-bottom: 14px; }
.section-title p       { color: var(--gray); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.section-title .line   { width: 56px; height: 4px; background: var(--secondary); border-radius: 2px; margin: 14px auto; }

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--header-h);
  background: rgba(15, 42, 31, 0.96);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
header.scrolled { background: rgba(10, 30, 22, 0.99); box-shadow: 0 2px 28px rgba(0,0,0,0.38); }

nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 22px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 1.9rem; }
.logo-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: bold; color: var(--white); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.72rem; font-weight: 400; color: var(--accent); font-family: var(--font-main); letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.93rem; font-weight: 500; padding: 4px 0; border-bottom: 2px solid transparent; transition: var(--transition); }
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: var(--secondary); }

.nav-cta {
  background: var(--secondary) !important; color: var(--white) !important;
  padding: 8px 22px !important; border-radius: 25px !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--secondary-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.4); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   HERO (full-page)
   ===================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 65%, var(--accent) 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,42,31,0.45) 0%, rgba(15,42,31,0.72) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 22px 80px; max-width: var(--max-width); margin: 0 auto; width: 100%; }

.hero-badge { display: inline-block; background: var(--secondary); color: var(--white); padding: 6px 18px; border-radius: 20px; font-size: 0.83rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { color: var(--white); margin-bottom: 22px; max-width: 760px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-subtitle { color: rgba(255,255,255,0.9); font-size: 1.18rem; max-width: 580px; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 45px; margin-top: 60px; flex-wrap: wrap; }
.hero-stat-number { font-size: 2rem; font-weight: bold; color: var(--accent); font-family: var(--font-heading); }
.hero-stat-label  { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin-top: 4px; }

/* =====================================================
   PAGE HERO (shorter)
   ===================================================== */
.page-hero {
  padding: 140px 22px 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
}
.page-hero-bg      { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,42,31,0.88) 0%, rgba(15,42,31,0.35) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.page-hero p  { color: rgba(255,255,255,0.88); font-size: 1.08rem; max-width: 640px; margin-bottom: 0; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.38); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 30px; font-size: 1rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
  font-family: var(--font-main);
}
.btn-primary  { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-primary:hover  { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(255,107,53,0.4); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover   { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-2px); }
.btn-green    { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-green:hover     { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(27,67,50,0.35); }
.btn-sm       { padding: 8px 20px; font-size: 0.9rem; }

/* =====================================================
   CARD GRIDS
   ===================================================== */
.cards-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 30px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.card-image { position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--accent)); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-image img { transform: scale(1.07); }

.card-badge { position: absolute; top: 14px; left: 14px; background: var(--secondary); color: var(--white); padding: 4px 12px; border-radius: 14px; font-size: 0.78rem; font-weight: 600; }

.card-body    { padding: 24px; }
.card-body h3 { margin-bottom: 10px; color: var(--primary-dark); }
.card-body p  { color: var(--gray); font-size: 0.93rem; margin-bottom: 15px; }

.card-meta      { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.83rem; color: var(--gray); margin-bottom: 16px; }
.card-meta-item { display: flex; align-items: center; gap: 4px; }

.card-link { color: var(--primary); font-weight: 600; font-size: 0.93rem; display: inline-flex; align-items: center; gap: 5px; }
.card-link:hover { color: var(--secondary); }

/* =====================================================
   SPLIT SECTIONS
   ===================================================== */
.split-section         { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

.split-content h2  { margin-bottom: 18px; }
.split-content p   { color: var(--gray); margin-bottom: 18px; }

.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 7px 0; font-size: 0.93rem;
}
.feature-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 21px; height: 21px; background: var(--primary); color: var(--white);
  border-radius: 50%; font-size: 0.68rem; font-weight: bold; flex-shrink: 0; margin-top: 2px;
}

/* =====================================================
   TOUR DETAIL SECTIONS
   ===================================================== */
.tour-detail        { padding: 56px 0; border-bottom: 1px solid var(--border); }
.tour-detail:last-child { border-bottom: none; }

.tour-detail-inner  { display: grid; grid-template-columns: 1fr 1.55fr; gap: 50px; align-items: start; }
.tour-detail.reverse .tour-detail-inner { grid-template-columns: 1.55fr 1fr; }
.tour-detail.reverse .tour-detail-inner > :first-child { order: 2; }
.tour-detail.reverse .tour-detail-inner > :last-child  { order: 1; }

.tour-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--primary-light), var(--accent)); box-shadow: var(--shadow); }
.tour-image img { width: 100%; height: 100%; object-fit: cover; }

.tour-info-box  { background: var(--light); border-radius: var(--radius-sm); padding: 20px 22px; margin: 20px 0; }
.tour-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.tour-info-label { font-size: 0.77rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.tour-info-value { font-weight: 600; color: var(--primary-dark); font-size: 0.93rem; margin-top: 2px; }

.difficulty       { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 14px; font-size: 0.79rem; font-weight: 600; }
.difficulty-easy  { background: #D1FAE5; color: #065F46; }
.difficulty-med   { background: #FEF3C7; color: #92400E; }
.difficulty-hard  { background: #FEE2E2; color: #991B1B; }

/* =====================================================
   ROUTE CARDS
   ===================================================== */
.route-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px, 1fr)); gap: 24px; }

.route-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
  transition: var(--transition); border-left: 4px solid var(--primary);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-left-color: var(--secondary); }
.route-card h3    { margin-bottom: 10px; font-size: 1.08rem; }
.route-card p     { color: var(--gray); font-size: 0.9rem; margin-bottom: 14px; }

.route-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.route-tag       { background: var(--light-gray); padding: 3px 10px; border-radius: 12px; font-size: 0.78rem; color: var(--gray); }

/* =====================================================
   TIP CARDS
   ===================================================== */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }

.tip-card { background: var(--white); border-radius: var(--radius); padding: 30px 24px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.tip-icon  { font-size: 2.6rem; margin-bottom: 14px; }
.tip-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.tip-card p  { color: var(--gray); font-size: 0.88rem; }

/* =====================================================
   WHY SECTION GRID
   ===================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-item { text-align: center; padding: 30px 18px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); }
.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.why-icon  { font-size: 2.6rem; margin-bottom: 14px; }
.why-item h3 { font-size: 1rem; margin-bottom: 10px; }
.why-item p  { font-size: 0.86rem; color: var(--gray); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }

.contact-info h3 { margin-bottom: 14px; }
.contact-info p  { color: var(--gray); margin-bottom: 24px; }

.contact-item         { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon    { font-size: 1.5rem; flex-shrink: 0; }
.contact-item-content h4 { margin-bottom: 4px; font-size: 0.93rem; }
.contact-item-content p  { margin: 0; color: var(--gray); font-size: 0.88rem; }

.form-group       { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 0.95rem; color: var(--dark);
  background: var(--white); transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(45,106,79,0.14); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-item  { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 12px; }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: var(--white); cursor: pointer;
  font-weight: 600; border: none; text-align: left;
  transition: var(--transition); font-size: 1rem;
  font-family: var(--font-main); color: var(--dark);
}
.faq-question:hover          { background: var(--light); }
.faq-question.active         { background: var(--primary); color: var(--white); }
.faq-icon                    { font-size: 1.3rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer      { display: none; padding: 20px 22px; background: var(--light); color: var(--gray); font-size: 0.93rem; line-height: 1.75; }
.faq-answer.open { display: block; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  padding: 80px 22px; text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before { content: '🚴'; position: absolute; font-size: 18rem; opacity: 0.04; right: -1%; top: -35%; transform: rotate(-20deg); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 1.08rem; max-width: 580px; margin: 0 auto 35px; }

/* =====================================================
   INFO BOXES
   ===================================================== */
.info-box         { background: var(--light); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 24px; margin: 24px 0; }
.info-box.warning { border-left-color: var(--secondary); background: #FFF8F5; }
.info-box p       { margin: 0; font-size: 0.93rem; }

/* =====================================================
   GALLERY GRID
   ===================================================== */
.gallery-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item    { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--accent)); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 60px 0 28px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 44px; }

.footer-brand .logo     { margin-bottom: 14px; }
.footer-brand p         { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.58); margin-bottom: 18px; }
.footer-keywords        { font-size: 0.77rem; color: rgba(255,255,255,0.35); line-height: 1.9; }

.footer-col h4  { color: var(--white); margin-bottom: 18px; font-size: 0.88rem; font-family: var(--font-main); text-transform: uppercase; letter-spacing: 1px; }

.footer-links            { display: flex; flex-direction: column; gap: 10px; }
.footer-links a          { color: rgba(255,255,255,0.58); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover    { color: var(--accent); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.83rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1060px) {
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--primary-dark); flex-direction: column;
    padding: 20px; gap: 4px;
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open   { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a      { padding: 12px 15px; border-radius: var(--radius-sm); border-bottom: none !important; font-size: 1rem; }
  .nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.1); }
  .nav-cta          { margin-top: 10px; text-align: center; justify-content: center; }
  .nav-toggle       { display: flex; }

  .section { padding: 50px 0; }

  .split-section,
  .split-section.reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .split-section.reverse > :first-child,
  .split-section.reverse > :last-child   { order: unset; }

  .contact-grid { grid-template-columns: 1fr; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr; gap: 26px; }
  .form-row     { grid-template-columns: 1fr; }
  .hero-stats   { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .tour-detail-inner,
  .tour-detail.reverse .tour-detail-inner { grid-template-columns: 1fr; }
  .tour-detail.reverse .tour-detail-inner > :first-child,
  .tour-detail.reverse .tour-detail-inner > :last-child { order: unset; }
}

@media (max-width: 480px) {
  .why-grid       { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .tour-info-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SCROLL ANIMATION (applied by JS)
   ===================================================== */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px; } .mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 30px; }
.text-gray    { color: var(--gray); }
.text-primary { color: var(--primary); }
.text-orange  { color: var(--secondary); }
.fw-bold      { font-weight: 700; }
.w-full       { width: 100%; }
