/* ------------------------
   GLOBAL SETTINGS
------------------------ */

:root {
  --primary-color: #000;
  --secondary-color: #767676;
  --accent-color: #0693e3;
  --bg-color: #f5f5f5;

  --font-body: 'Open Sans', sans-serif;
  --font-heading: 'DM Serif Display', serif;

  --spacing: 1rem;
}

html, body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--primary-color);
}

/* Headings override Bulma defaults */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

/* ------------------------
   Header
------------------------ */
.navbar {
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}
/* Logo Parent */
.navbar-item.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* Child image */
.navbar-item.logo .logo-mark {
  height: 40px;
  width: auto;
}
/* Child text */
.navbar-item.logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

/* ------------------------
   HERO IMAGE
------------------------ */
.hero {
  background-image: url('/assets/img/Hero-Image.jpg');
  background-size: cover;        /* fills screen */
  background-position: center;   /* keeps image centered */
  background-repeat: no-repeat;
}

/* ------------------------
   SERVICES (Custom need)
------------------------ */
.service-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: center service blocks */
.service-card {
  text-align: center;
}

/* ------------------------
   GALLERY (Custom component)
------------------------ */
.gallery-wrapper {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 280px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation buttons */
.gallery-nav {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* ------------------------
   BUTTON OVERRIDES
------------------------ */
.button.is-pill {
  border-radius: 999px;
}

/* Optional accent button */
.button.is-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
}

/* ------------------------
   FOOTER (Bulma-based)
------------------------ */
.footer {
  background-color: #222;
  color: #fff;
}

.footer a {
  color: var(--accent-color);
}

/* Form tweaks inside footer */
.footer input,
.footer textarea {
  border-radius: 4px;
}

/* Bottom row */
.footer-bottom {
  margin-top: 2rem;
  font-size: 0.875rem;
}