/* Site styles moved from inline <style> in index.html */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body { 
  scroll-behavior: smooth;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
}
.hero {
  background: linear-gradient(rgba(21, 5, 237, 0.2), rgba(8, 2, 95, 0.8)),
              url("../img/hero-bg.jpg") center/cover no-repeat;
  color: white;
  padding: 140px 0;
}
.section-title {
  color: #2E74B5;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
footer {
  background: #222;
  color: #aaa;
}

.gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Ensure gallery images share the same dimensions so captions align */
.gallrey img, .gallery img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.office-img {
  width: 30%;
}

.work-title {
  color: #2E74B5;
}

.work-thumb-wrapper {
  padding: 4px;
  box-sizing: border-box;
}

.work-thumb {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.25rem; /* match rounded */
}

/* Fixed download button in upper-right */
.fixed-download-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1060;
  border-radius: 0.375rem;
  padding: 0.45rem 0.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gallery-toggle {
  cursor: pointer;
  user-select: none;
}

.toggle-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* Accordion animation */
#gallery-grid {
  overflow: hidden;
  transition: opacity 0.3s ease;
}

#gallery-grid.d-none {
  max-height: 0;
  opacity: 0;
}

#gallery-grid:not(.d-none) {
  /* max-height: 3000px; adjust if gallery grows */
  opacity: 1;
}

.fixed-top-buttons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}
.map-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

@media (max-width: 576px) {
  .fixed-download-btn { top: 10px; right: 10px; padding: 0.35rem 0.6rem; }
}

/* Project Cards */
.project-card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.project-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.project-toggle {
  background-color: #11112c38 !important;
  border: none !important;
  padding: 1rem !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: left;
}

.project-toggle:hover {
  background-color: #0b5ed7 !important;
}

.project-toggle:not(.collapsed) {
  background-color: #03224f !important;
}

.toggle-chevron {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.25rem;
  color: inherit;
}

.project-card .card-body {
  padding: 1.5rem;
}

.project-card .card-body ul {
  padding-left: 1.5rem;
}

.project-card .card-body li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

