/* 
 * Sicroomxapennine - Eco Retreat Theme
 * Modern & Responsive CSS with Retro Block Interface Design
 */

:root {
  /* Triadic Color Scheme */
  --primary-color: #2a9d8f;
  --primary-light: #4db5aa;
  --primary-dark: #1e756b;
  
  --secondary-color: #e76f51;
  --secondary-light: #f08a71;
  --secondary-dark: #c65a3e;
  
  --tertiary-color: #8338ec;
  --tertiary-light: #9a5ff0;
  --tertiary-dark: #6a2cc7;
  
  /* Neutral Colors */
  --dark: #264653;
  --light: #f8f9fa;
  --medium: #e9ecef;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-width: 2px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Animations */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Base Styles */
html, body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, 
.navbar-item, .button, .logo, 
.section-title, .hero-title, .hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 20px auto;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Button Styles */
.button {
  transition: all var(--transition-fast);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform var(--transition-fast);
  z-index: -1;
}

.button:hover::before {
  transform: translateX(0);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.button.is-primary:hover,
.button.is-primary:focus {
  background-color: var(--primary-dark);
}

.button.is-primary.is-outlined {
  background-color: transparent;
  border: var(--border-width) solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-primary.is-outlined:hover,
.button.is-primary.is-outlined:focus {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.button.is-rounded {
  border-radius: 9999px;
}

/* Navbar Styles */
.navbar {
  transition: all var(--transition-fast);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.is-transparent {
  background-color: transparent;
}

.navbar-brand {
  font-weight: 700;
}

.navbar-item {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--text-light);
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-item:hover::after,
.navbar-item:focus::after {
  width: 80%;
}

.logo {

  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navbar Scrolled State */
.navbar.is-scrolled {
  background-color: var(--light);
  box-shadow: var(--shadow-md);
}

.navbar.is-scrolled .navbar-item,
.navbar.is-scrolled .logo {
  color: var(--dark);
}

/* Mobile Menu */
.navbar-burger {
  color: var(--text-light);
}

.navbar.is-scrolled .navbar-burger {
  color: var(--dark);
}

.navbar-menu {
  background-color: transparent;
}

@media screen and (max-width: 1023px) {
  .navbar-menu.is-active {
    background-color: var(--dark);
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeIn 1s ease-in-out;
}

.hero-subtitle {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: fadeIn 1s ease-in-out 0.3s backwards;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
  animation: fadeIn 1s ease-in-out 0.6s backwards;
}

.hero-buttons {
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-in-out 0.9s backwards;
}

.hero-buttons .button {
  margin: 0.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Countdown */
.countdown-container {
  margin-top: 3rem;
  animation: fadeIn 1s ease-in-out 1.2s backwards;
}

.countdown {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1.5rem;
}

.countdown-item span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

.countdown-item span:last-child {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* Particles Animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Vision Section */
.vision-section {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.vision-content {
  padding-right: 2rem;
}

.vision-content p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.vision-cta {
  margin-top: 2rem;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-medium);
}

.parallax {
  transform: perspective(1000px);
  transition: transform var(--transition-medium);
}

.parallax:hover {
  transform: perspective(1000px) rotateY(5deg);
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  background-color: var(--medium);
}

.card {
  height: 100%;
  overflow: hidden;
  transition: all var(--transition-fast);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--text-dark);
  flex-grow: 1;
}

.card-footer {
  background-color: var(--light);
  border-top: 1px solid var(--medium);
}

.card-footer-item {
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.card-footer-item:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Accordion */
.accordion-content {
  display: none;
  transition: all var(--transition-fast);
}

.accordion-content.is-active {
  display: block;
}

/* Statistics Section */
.statistics-section {
  color: var(--text-light);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8));
  z-index: 1;
}

.statistics-section .container {
  position: relative;
  z-index: 2;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  height: 100%;
}

.stat-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.eco-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.eco-icon.tree {
  background-image: url('./image/icon-tree.svg');
}

.eco-icon.energy {
  background-image: url('./image/icon-energy.svg');
}

.eco-icon.water {
  background-image: url('./image/icon-water.svg');
}

.eco-icon.community {
  background-image: url('./image/icon-community.svg');
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

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

/* Resources Section */
.resources-section {
  background-color: var(--light);
}

.resource-card {
  padding: 2rem;
  text-align: center;
  background-color: var(--medium);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary-color);
}

.eco-icon.book {
  background-image: url('./image/icon-book.svg');
}

.eco-icon.leaf {
  background-image: url('./image/icon-leaf.svg');
}

.eco-icon.home {
  background-image: url('./image/icon-home.svg');
}

.resource-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--tertiary-dark);
}

.resource-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--text-dark);
}

.resource-link {
  display: inline-block;
  color: var(--tertiary-color);
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
}

.resource-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--tertiary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.resource-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--medium);
  padding-bottom: 5rem;
}

.testimonial-card {
  margin: 0 auto;
  max-width: 800px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.testimonial-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.testimonial-text::before {
  top: -1rem;
  left: -0.5rem;
}

.testimonial-text::after {
  bottom: -3rem;
  right: -0.5rem;
  transform: rotate(180deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 4px solid var(--primary-color);
}

.author-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.author-title {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.testimonial-navigation button {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0.5rem 1rem;
}

.testimonial-navigation button:hover {
  color: var(--primary-dark);
}

.testimonial-dots {
  display: flex;
  margin: 0 1rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-light);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.is-active {
  background-color: var(--primary-dark);
  transform: scale(1.3);
}

/* Awards Section */
.awards-section {
  background-color: var(--light);
}

.award-card {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: var(--medium);
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
  transition: all var(--transition-fast);
}

.award-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.award-icon {
  margin-right: 2rem;
  color: var(--secondary-color);
  font-size: 2.5rem;
  flex-shrink: 0;
}

.award-medal {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url('./image/icon-medal.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.award-content {
  flex-grow: 1;
}

.award-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-dark);
}

.award-issuer {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.award-description {
  color: var(--text-dark);
}

/* Events Section */
.events-section {
  background-color: var(--medium);
}

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.event-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.event-year {
  font-size: 0.875rem;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--tertiary-dark);
}

.event-location {
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.event-location::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('./image/icon-location.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}

.event-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--text-dark);
}

/* Contact Section */
.contact-section {
  background-color: var(--light);
}

.contact-info {
  margin-bottom: 2rem;
}

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

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
  flex-shrink: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-icon.location {
  background-image: url('./image/icon-map.svg');
}

.contact-icon.phone {
  background-image: url('./image/icon-phone.svg');
}

.contact-icon.email {
  background-image: url('./image/icon-email.svg');
}

.contact-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

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

.map-container {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-medium);
}

.map-container:hover img {
  transform: scale(1.05);
}

.contact-form-container {
  background-color: var(--medium);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-dark);
}

.label {
  color: var(--text-dark);
  font-weight: 500;
}

.input, .textarea {
  border: 2px solid var(--medium);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  padding: 0.75rem;
}

.input:focus, .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.25);
}

.checkbox {
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: var(--dark) !important;
  color: var(--text-light) !important;
  padding: 5rem 1.5rem 2rem !important;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.footer-description {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 0.75rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  transform: translateX(-10px);
  opacity: 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 1.25rem;
}

.footer-links a:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--text-light);
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 1.5rem;
}

.social-links a:hover {
  color: var(--primary-light);
}

.social-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.social-links a[href*="facebook"]::before {
  background-image: url('./image/icon-facebook.svg');
}

.social-links a[href*="twitter"]::before {
  background-image: url('./image/icon-twitter.svg');
}

.social-links a[href*="instagram"]::before {
  background-image: url('./image/icon-instagram.svg');
}

.newsletter h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  border: none;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  padding: 0.5rem 1rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal-card-head {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.modal-card-title {
  color: var(--text-light);
}

.delete {
  background-color: rgba(255, 255, 255, 0.7);
}

.modal-card-foot {
  background-color: var(--light);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: var(--light);
}

.success-container {
  max-width: 600px;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.success-message {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

/* Privacy & Terms Pages */

.privacy-container,
.terms-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-title,
.terms-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.has-text-primary { color: var(--primary-color); }
.has-text-secondary { color: var(--secondary-color); }
.has-text-tertiary { color: var(--tertiary-color); }
.has-text-light { color: var(--text-light); }
.has-text-dark { color: var(--text-dark); }
.has-text-muted { color: var(--text-muted); }

.has-background-primary { background-color: var(--primary-color); }
.has-background-secondary { background-color: var(--secondary-color); }
.has-background-tertiary { background-color: var(--tertiary-color); }
.has-background-light { background-color: var(--light); }
.has-background-medium { background-color: var(--medium); }
.has-background-dark { background-color: var(--dark); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.mb-5 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 2rem; }
.p-4 { padding: 3rem; }
.p-5 { padding: 4rem; }

@media (max-width:450px){
    .logo {
      font-size: 22px;
    }

    .button.is-large {
      font-size: 18px !important;
      white-space: unset !important;
    }

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

.navbar-menu.is-active a {
  color: #fff !important;
}