/* Custom variables and overrides for Bulma */
:root {
    --brand-green: green;
    --brand-dark-green: darkgreen;
}

/* Global Text Color Override */
body {
    color: var(--brand-green); /* Set default text color to green */
}

/* Custom Button Style - extending Bulma's button */
.btn {
    color: white !important;
    background-color: var(--brand-green) !important;
    border-color: transparent !important;
}

.btn:hover {
    background-color: var(--brand-dark-green) !important;
}

/* Bike Grid - using Bulma's tiles instead of custom grid */
.bike-grid {
    padding: 1.5rem;
}

.bike-item {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    height: 100%;
}

.bike-item img {
    max-width: 100%;
    border-radius: 6px;
}

/* Hero Section - using Bulma's hero instead of custom hero */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 6px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section - using Bulma's columns instead of custom flex */
.services {
    padding: 3rem 1.5rem;
    text-align: center;
}

.services-logo {
    margin-bottom: 2rem;
}

.services-logo img {
    max-height: 100px;
}

.service-item {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 6px;
    height: 100%;
}

/* Header - using Bulma's navbar instead of custom header */
header {
    background-color: var(--brand-green);
}

header a {
    color: white !important;
}

.logo img {
    max-height: 50px;
}
/* Adjust logo size in navbar */
.navbar-brand .navbar-item {
  padding: 0.25rem 0.75rem;
}

.navbar-brand img {
  max-height: 3.5rem;
}
.facebook-logo {
    width: 100%;
    height: 100%;
}

.facebook-logo:hover {
    opacity: 0.8;
}

/* Single Page Styles - using Bulma's content class */
.single-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
}

.single-page a {
    color: var(--brand-green);
}

.single-page a:hover {
    color: var(--brand-dark-green);
}

/* Facebook Logo in Contact Section */
.facebook-logo-contact {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-left: 0.75rem;
}

.facebook-logo-contact:hover {
    opacity: 0.8;


}


/* Bike Detail Page Styles */
.bike-detail .main-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bike-detail .thumbnail {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
  opacity: 0.7;
  border: 2px solid transparent;
}

.bike-detail .thumbnail:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.bike-detail .thumbnail.active {
  opacity: 1;
  border: 2px solid var(--brand-green);
}

.bike-detail .bike-description {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 6px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .bike-detail .columns {
    flex-direction: column;
  }
  
  .bike-detail .thumbnail {
    margin-bottom: 0.5rem;
  }
}


/* Footer Styles */
.footer {
  border-top: 3px solid var(--brand-green);
  padding: 3rem 1.5rem;
}

.footer p {
  margin-bottom: 0.75rem;
}

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

.footer .social-icons a {
  transition: transform 0.2s ease;
}

.footer .social-icons a:hover {
  transform: scale(1.1);
}

.footer .fas, .footer .fab {
  width: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer .column {
    margin-bottom: 2rem;
  }
}
