/* =================================================================
   ORCHID STYLE - VINTAGE RETRO CSS STYLESHEET
   Design Style: Vintage & Retro-Inspired Design
   ================================================================= */

/* =================================================================
   CSS RESET & BASE STYLES
   ================================================================= */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2C1810;
  background-color: #F5E6D3;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   TYPOGRAPHY - VINTAGE RETRO FONTS
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  line-height: 1.3;
  color: #8B4513;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 3px solid #D2691E;
  padding-bottom: 10px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #A0522D;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #8B4513;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================================================
   HEADER & NAVIGATION - VINTAGE STYLE
   ================================================================= */

header {
  background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
  padding: 20px 0;
  border-bottom: 5px solid #A0522D;
  box-shadow: 0 4px 0 rgba(139, 69, 19, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.2));
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFF8DC;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: rgba(255, 248, 220, 0.1);
}

.main-nav a:hover {
  background: #8B4513;
  border-color: #FFF8DC;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* =================================================================
   MOBILE MENU - VINTAGE BURGER MENU
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #D2691E;
  border: 3px solid #8B4513;
  color: #FFF8DC;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(139, 69, 19, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B4513;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #D2691E 0%, #8B4513 100%);
  border-left: 5px solid #A0522D;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FFF8DC;
  color: #FFF8DC;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FFF8DC;
  color: #8B4513;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #FFF8DC;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  background: rgba(255, 248, 220, 0.15);
  border: 2px solid rgba(255, 248, 220, 0.3);
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #8B4513;
  border-color: #FFF8DC;
  transform: translateX(5px);
}

/* =================================================================
   HERO SECTION - VINTAGE RETRO STYLE
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #F4A460 0%, #D2691E 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #8B4513;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 69, 19, 0.05) 10px,
    rgba(139, 69, 19, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFF8DC;
  font-size: 56px;
  text-shadow: 4px 4px 0px rgba(139, 69, 19, 0.4);
  margin-bottom: 24px;
}

.subheadline {
  font-size: 20px;
  color: #FFF8DC;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

.season-badge {
  display: inline-block;
  background: #8B4513;
  color: #FFF8DC;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #FFF8DC;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

/* =================================================================
   BUTTONS - VINTAGE RETRO STYLE
   ================================================================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #D2691E;
  color: #FFF8DC;
  border-color: #8B4513;
}

.btn-primary:hover {
  background: #8B4513;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: #F5E6D3;
  color: #8B4513;
  border-color: #D2691E;
}

.btn-secondary:hover {
  background: #FFF8DC;
  border-color: #8B4513;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-link {
  color: #D2691E;
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #8B4513;
  transform: translateX(5px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =================================================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   ================================================================= */

.benefits-grid,
.services-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.categories-grid,
.articles-grid,
.content-links,
.contact-grid,
.mission-vision-grid,
.stories-grid,
.outfit-grid,
.colors-grid,
.shopping-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.team-member,
.category-card,
.article-card,
.content-link-card,
.contact-method,
.mission-card,
.vision-card,
.story-card,
.outfit-card,
.color-card,
.location-card {
  flex: 1 1 300px;
  background: #FFF8DC;
  padding: 28px;
  border: 4px solid #D2691E;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.article-card:hover,
.content-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(139, 69, 19, 0.4);
  border-color: #8B4513;
}

.service-card h3,
.benefit-card h3,
.value-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p.price {
  font-size: 24px;
  font-weight: 700;
  color: #D2691E;
  margin: 16px 0;
}

/* =================================================================
   TESTIMONIALS - HIGH CONTRAST FOR READABILITY
   ================================================================= */

.testimonials {
  background: #F5E6D3;
  padding: 60px 20px;
  border-top: 5px solid #D2691E;
  border-bottom: 5px solid #D2691E;
}

.testimonial-card {
  background: #FFFFFF;
  border: 4px solid #8B4513;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.3);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: #D2691E;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-card p {
  color: #2C1810;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #8B4513;
  font-weight: 700;
  font-style: italic;
  text-align: right;
  margin-top: 20px;
  margin-bottom: 0;
}

/* =================================================================
   TEXT-IMAGE SECTIONS - FLEXBOX ALIGNMENT
   ================================================================= */

.text-image-section,
.brand-story,
.season-overview,
.services-intro,
.gallery-intro {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 30px;
  background: #FFF8DC;
  border: 3px solid #D2691E;
  border-radius: 8px;
}

/* =================================================================
   VALUE PROPOSITION & FEATURES
   ================================================================= */

.value-proposition,
.services-overview,
.location-highlight,
.cta-final,
.cta-about,
.cta-services,
.cta-trends,
.cta-gallery,
.cta-blog {
  background: #FFF8DC;
  padding: 60px 20px;
  text-align: center;
  border: 5px solid #D2691E;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 8px 8px 0 rgba(139, 69, 19, 0.3);
}

.section-subtitle {
  font-size: 18px;
  color: #A0522D;
  margin-bottom: 32px;
  font-style: italic;
}

.trust-indicator,
.availability {
  font-size: 14px;
  color: #8B4513;
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================================================
   FOOTER - VINTAGE RETRO STYLE
   ================================================================= */

footer {
  background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
  color: #FFF8DC;
  padding: 50px 20px 30px;
  border-top: 8px solid #D2691E;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #FFF8DC;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 3px solid #D2691E;
  padding-bottom: 10px;
}

.footer-column p,
.footer-column a {
  color: #FFF8DC;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  display: block;
}

.footer-column a:hover {
  color: #F4A460;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 248, 220, 0.3);
  color: rgba(255, 248, 220, 0.8);
  font-size: 14px;
}

/* =================================================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
  color: #FFF8DC;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  border-top: 5px solid #A0522D;
  z-index: 10000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #FFF8DC;
  text-decoration: underline;
  font-weight: 700;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn.accept {
  background: #F5E6D3;
  color: #8B4513;
  border-color: #FFF8DC;
}

.cookie-btn.accept:hover {
  background: #FFF8DC;
  transform: scale(1.05);
}

.cookie-btn.reject {
  background: transparent;
  color: #FFF8DC;
  border-color: #FFF8DC;
}

.cookie-btn.reject:hover {
  background: rgba(255, 248, 220, 0.1);
}

.cookie-btn.settings {
  background: transparent;
  color: #FFF8DC;
  border-color: #F4A460;
}

.cookie-btn.settings:hover {
  background: rgba(244, 164, 96, 0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFF8DC;
  border: 5px solid #D2691E;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 rgba(139, 69, 19, 0.4);
}

.cookie-modal h2 {
  color: #8B4513;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5E6D3;
  border: 3px solid #D2691E;
  border-radius: 8px;
}

.cookie-category h3 {
  color: #8B4513;
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #D2691E;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #8B4513;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #8B4513;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF8DC;
  top: 1px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* =================================================================
   LEGAL PAGES STYLING
   ================================================================= */

.legal-content {
  background: #FFFFFF;
  padding: 40px;
  border: 4px solid #D2691E;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.3);
}

.legal-content h2 {
  color: #8B4513;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #A0522D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.last-updated,
.effective-date {
  font-style: italic;
  color: #A0522D;
  font-size: 14px;
  margin-top: 8px;
}

/* =================================================================
   FORM STYLING - VINTAGE RETRO
   ================================================================= */

.form-container {
  background: #FFFFFF;
  padding: 40px;
  border: 4px solid #D2691E;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.form-container p {
  margin-bottom: 8px;
  color: #2C1810;
}

.form-container strong {
  color: #8B4513;
  display: block;
  margin-bottom: 8px;
  margin-top: 20px;
}

.note {
  font-size: 14px;
  color: #A0522D;
  font-style: italic;
  margin-top: 16px;
}

/* =================================================================
   BUSINESS HOURS & LOCATION
   ================================================================= */

.business-hours ul,
.location-details ul {
  list-style: none;
  padding: 0;
}

.business-hours li,
.location-details li {
  padding: 12px 20px;
  background: #FFF8DC;
  border: 2px solid #D2691E;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* =================================================================
   ARTICLES & BLOG STYLING
   ================================================================= */

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.articles-list article {
  background: #FFF8DC;
  padding: 24px;
  border: 3px solid #D2691E;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.articles-list article:hover {
  transform: translateX(10px);
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.3);
}

.articles-list h3 {
  color: #8B4513;
  margin-bottom: 8px;
}

.meta,
.category {
  color: #A0522D;
  font-size: 14px;
  font-style: italic;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.category-link {
  padding: 12px 24px;
  background: #D2691E;
  color: #FFF8DC;
  border: 3px solid #8B4513;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.category-link:hover {
  background: #8B4513;
  transform: scale(1.05);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Adjust header */
  header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 45px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 50px 20px;
  }
  
  /* Flex containers to column */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .articles-grid,
  .content-links,
  .contact-grid,
  .mission-vision-grid,
  .stories-grid,
  .outfit-grid,
  .colors-grid,
  .shopping-locations {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .team-member,
  .category-card,
  .article-card,
  .content-link-card,
  .contact-method,
  .mission-card,
  .vision-card,
  .story-card,
  .outfit-card,
  .color-card,
  .location-card {
    flex: 1 1 100%;
  }
  
  /* Text-image sections to column */
  .text-image-section,
  .brand-story,
  .season-overview,
  .services-intro,
  .gallery-intro {
    flex-direction: column;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer to column */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 24px;
  }
  
  /* Legal content */
  .legal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .section {
    padding: 30px 15px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card {
    padding: 20px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeIn 0.6s ease;
}

/* Smooth hover effects */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header nav,
  .cta-buttons {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: white;
    border: 2px solid black;
  }
}

/* =================================================================
   END OF STYLESHEET
   ================================================================= */
