:root {
  --cbc-blue: #667faa;
  --cbc-blue-dark: #556d98;
  --cbc-text: #111111;
  --cbc-light: #f7f7f7;
  --cbc-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--cbc-text);
  background: var(--cbc-white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.58)),
    url('gallery/landing.jpg') center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.18);
  width: 100%;
}

.hero-main-card {
  max-width: 100%;
  margin-left: 0;
}

.hero-logo-wrap {
  min-height: 100%;
}

.hero-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cbc-text);
}

.title-accent {
  width: 100%;
  height: 4px;
  background: var(--cbc-blue);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.about-card,
.contact-card {
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.08);
}

.about-image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.08);
}

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

#about {
  scroll-margin-top: -25px;
}

.contact-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.btn-cbc {
  background: var(--cbc-blue);
  border-color: var(--cbc-blue);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
}

.btn-cbc:hover,
.btn-cbc:focus {
  background: var(--cbc-blue-dark);
  border-color: var(--cbc-blue-dark);
  color: #fff;
}

.quick-links a {
  text-decoration: none;
  color: var(--cbc-blue-dark);
  font-weight: 600;
  margin-right: 1rem;
}

footer {
  background: #111111;
  color: rgba(255,255,255,0.82);
  padding: 1.5rem 0;
}

@media (max-width: 991.98px) {
  .hero-logo {
    max-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-logo {
    max-width: 320px;
    max-height: 320px;
  }
}