/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FF385C;
  --primary-dark: #E61E4D;
  --secondary-color: #00A699;
  --text-dark: #222222;
  --text-light: #717171;
  --bg-light: #F7F7F7;
  --white: #FFFFFF;
  --border-color: #DDDDDD;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Dark mode variables */
[data-theme="dark"] {
  --text-dark: #E0E0E0;
  --text-light: #B0B0B0;
  --bg-light: #1A1A1A;
  --white: #2D2D2D;
  --border-color: #404040;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.7);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-brand h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.nav-menu a:hover::after {
  width: 100%;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 1rem;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.theme-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: all 0.3s ease;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 2rem;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

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

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Apartments Section */
.apartments {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.apartment-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apartment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.apartment-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartment-placeholder {
  font-size: 4rem;
  opacity: 0.5;
}

.apartment-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.apartment-badge.featured {
  background: var(--primary-color);
  color: var(--white);
}

.apartment-content {
  padding: 1.5rem;
}

.apartment-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.apartment-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-light);
}

.apartment-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.apartment-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #FFB800;
  font-size: 1rem;
}

.rating-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.apartment-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-period {
  color: var(--text-light);
  font-size: 1rem;
}


/* Amenities Section */
.amenities {
  padding: 80px 0;
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.amenity-item:hover {
  background: #e8e8e8;
}

.amenity-icon {
  font-size: 1.5rem;
}

/* Calendar Section */
.calendar-section {
  padding: 80px 0;
  background: var(--white);
}

.calendar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calendar-widget {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
}

.calendar-nav {
  background: var(--bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav:hover {
  background: var(--primary-color);
  color: var(--white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.calendar-day-header {
  text-align: center;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  background: var(--bg-light);
  color: var(--text-dark);
}

.calendar-day:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.calendar-day.other-month {
  opacity: 0.3;
  cursor: default;
}

.calendar-day.today {
  background: magenta;
  color: var(--white);
  font-weight: 700;
}

.calendar-day.booked {
  background: #ff6b6b;
  color: var(--white);
  cursor: not-allowed;
  opacity: 0.7;
}

.calendar-day.booked:hover {
  transform: none;
  background: #ff6b6b;
}

.calendar-day.available {
  background: var(--secondary-color);
  color: var(--white);
}

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.legend-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-box.available {
  background: var(--secondary-color);
}

.legend-box.booked {
  background: #ff6b6b;
}

.legend-box.today {
  background: magenta;
}

.booking-options {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.booking-options h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.booking-options>p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.airbnb-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.airbnb-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.airbnb-btn:hover {
  border-color: var(--primary-color);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.airbnb-icon {
  font-size: 2rem;
}

.airbnb-btn strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.airbnb-btn span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.ical-info {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.ical-info h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.ical-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ical-info ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 2;
}

.ical-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ical-input-group input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}

.ical-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.ical-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* Location Section */
.location {
  padding: 80px 0;
  background: var(--bg-light);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.location-list {
  list-style: none;
}

.location-list li {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.location-list li:last-child {
  border-bottom: none;
}

.location-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 1;
}

/* Leaflet controls styling */
.leaflet-control {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: none !important;
}

.leaflet-control-zoom a {
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
}

.leaflet-popup-content {
  margin: 0;
  padding: 0;
}

/* Custom marker styling */
.leaflet-marker-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.user-location-marker {
  background: transparent !important;
  border: none !important;
}

.como-llegar-btn {
  transition: all 0.3s ease;
}

.como-llegar-btn:hover {
  background: #008B7D !important;
  transform: translateY(-2px);
}

/* Leaflet Routing Machine styles */
.leaflet-routing-container {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 300px;
}

.leaflet-routing-alt {
  max-height: 200px;
  overflow-y: auto;
}

.leaflet-routing-alt h3 {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  color: var(--text-dark);
}

.leaflet-routing-alt-minimized {
  display: none;
}

[data-theme="dark"] .leaflet-routing-container {
  background: var(--white);
  color: var(--text-dark);
}



/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.review-author h4 {
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.review-stars {
  color: #FFB800;
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
}

.contact-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .location-content,
  .contact-content,
  .calendar-content {
    grid-template-columns: 1fr;
  }

  .apartments-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .ical-input-group {
    flex-direction: column;
  }

  .theme-toggle {
    margin-right: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Dark mode specific styles */
[data-theme="dark"] body {
  background: #121212;
  color: var(--text-dark);
}

[data-theme="dark"] .header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-theme="dark"] .apartment-card,
[data-theme="dark"] .calendar-widget,
[data-theme="dark"] .review-card,
[data-theme="dark"] .contact-form-container {
  background: var(--white);
  border-color: var(--border-color);
}

[data-theme="dark"] .feature-card:hover,
[data-theme="dark"] .apartment-card:hover {
  box-shadow: var(--shadow-hover);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--bg-light);
  color: var(--text-dark);
  border-color: var(--border-color);
}

[data-theme="dark"] #map {
  filter: brightness(0.9) contrast(1.1);
}

[data-theme="dark"] .leaflet-control {
  background-color: var(--white);
}

[data-theme="dark"] .leaflet-popup-content-wrapper {
  background-color: var(--white);
  color: var(--text-dark);
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}