/* main.css */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Body and typography */
body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Navbar fade-in */
nav {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
nav.show {
  opacity: 1;
}

/* Hero (masthead) styling moved inline for flexibility */
.masthead {
  position: relative;
}

/* Section headings */
h2 {
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* Project cards hover effect */
.project {
  overflow: hidden;
}
.project-text {
  transition: transform 0.3s ease;
}
.project-text:hover {
  transform: translateY(-10px);
}

/* Card styling */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card .fa-2x {
  color: var(--bs-primary);
}

/* Accordion custom bullet spacing */
.accordion-body li {
  margin-bottom: 0.5rem;
}

/* Footer social icons */
footer .social a {
  transition: color 0.3s;
}
footer .social a:hover {
  color: #fff;
}

/* Utility spacing overrides */
.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.mt-auto {
  margin-top: auto !important;
}

/* Responsive image rounding */
img.img-fluid {
  border-radius: 0.5rem;
}

/* home.css */

/* Hero overlay and text layering */
.masthead {
  display: flex;
  align-items: center;
  justify-content: center;
}
.masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.masthead .container {
  position: relative;
  z-index: 2;
}

/* Principles section */
#thework .card-img-top {
  height: 200px;
  object-fit: cover;
}
#thework .card-body {
  transition: background-color 0.3s;
}
#thework .card:hover .card-body {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Benefits section icons larger */
#thegain .fa-2x {
  font-size: 2.5rem;
}

/* Service section interactivity */
#theservice .card {
  cursor: pointer;
  transition: transform 0.2s;
}
#theservice .card:hover {
  transform: translateY(-5px);
}
#theservice .accordion-body {
  background-color: #f8f9fa;
}

/* About section circular image */
#theguy img {
  border-radius: 50%;
  max-width: 150px;
  opacity: 0.8;
}

/* Story section styling */
#thestory h3 {
  font-style: italic;
  margin-bottom: 1.5rem;
}
#thestory p {
  margin-bottom: 1rem;
}
/* GLOBAL: more space around each section */
section {
  padding-top: 4rem;    /* ↑ space before section */
  padding-bottom: 4rem; /* ↑ space after section */
}

/* If you want a bit more on mobile, you can increase at smaller widths: */
@media (max-width: 768px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.btn-primary {
  background-color: #008080;
  border-color:    #006666;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-color: #006666;
  border-color:    #004C4C;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #008080;
  border-color:    #006666;
  opacity:         .65;
}
.text-primary {
  color: #008080 !important;
}

/* if you want bold numbers */
.text-primary.bold {
  font-weight: 700;
}
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #121212;
  color: white;
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-consent-banner a {
  color: #00b4d8;
  text-decoration: underline;
}

.cookie-consent-banner button {
  margin-left: 1rem;
}

