@charset "UTF-8";
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 68.75%;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  display: flex;
  flex-direction: column;
  font-family: var(--font-base);
  font-size: 1.4rem;
  line-height: 1.65;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

:root {
  /* Colors */
  --clr-accent: #2b6cb0;
  --clr-bg: #fff;
  --clr-bg-soft: #f7f7f7;
  --clr-border: #e5e5e5;
  --clr-muted: #666;
  --clr-primary: #111;
  --clr-text: #222;
  /* Typography */
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  /* Sizes */
  --header-height: 7rem;
  --wrap-width: 1200px;
  /* Transitions */
  --trans: 0.25s ease;
}

.wrap {
  margin-inline: auto;
  max-width: var(--wrap-width);
  padding-inline: 2rem;
}

.site-header {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: var(--header-height);
  position: relative;
}

.brand {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.brand-logo {
  height: 4rem;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 500;
}

.main-nav ul.menu {
  display: flex;
  gap: 3rem;
}
.main-nav a {
  color: var(--clr-muted);
  font-size: 1.5rem;
  transition: color var(--trans);
}
.main-nav a.active, .main-nav a:hover {
  color: var(--clr-primary);
}

.ticker-wrap {
  background: #f8f8f8;
  border-bottom: 1px solid var(--clr-border);
}

.ticker {
  font-size: 1.4rem;
  white-space: nowrap;
}

.hero {
  background: #fafafa;
  background-image: url("../images/header-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 6rem 0;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 200px 1fr;
  margin: auto;
  max-width: var(--wrap-width);
  padding: 0 2rem;
}

.hero-photo img {
  border-radius: 50%;
}

.hero-content {
  padding-top: 8rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 2rem;
  max-width: 50ch;
}

.intro {
  background: #DCE3EF;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
  color: var(--clr-muted);
}

.intro .wrap {
  background: #F9FBFD;
  padding: 3rem;
}

.intro p {
  line-height: 2rem;
  text-align: justify;
}

.intro p + p {
  margin-top: 10px;
}

.photos {
  background-color: #faf6f0;
  padding: 4rem 0;
}

.photo-grid {
  column-count: 2;
  column-gap: 1.75rem;
  margin-top: 2.5rem;
}

.photo-card {
  background-color: #f2f2f2;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 1.75rem;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
}

.photo-card::after {
  background: rgba(0, 0, 0, 0.08);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.photo-card.show {
  opacity: 1;
  transform: translateY(0);
}

.photo-card img {
  display: block;
  height: auto;
  transition: transform 0.4s ease;
  width: 100%;
}

.photo-card:hover img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.photo-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  bottom: 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  left: 0;
  line-height: 1.5;
  padding: 1rem 1.25rem;
  position: absolute;
  right: 0;
}

.featured {
  padding: 6rem 0;
}

.featured h2 {
  margin-bottom: 4rem;
  text-align: center;
}

.featured-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.content {
  background: #DCE3EF;
  flex: 1 0 auto;
}

.page-content {
  background: #F9FBFD;
  min-height: 100%;
}

.section-head {
  padding-top: 2rem;
}

.page-img {
  margin-top: 1.5rem;
  text-align: center;
}

.page-img img {
  margin: 0 auto;
}

.page-img p {
  margin: 0.5rem;
}

.page-body {
  padding: 2rem;
}

.page-body .date-line {
  color: var(--clr-muted);
  margin-bottom: 1rem;
}

.page-body p {
  text-align: justify;
}

.contact-form {
  margin-top: 1rem;
}

.site-footer {
  background: #f6f8fb;
  border-top: 1px solid var(--clr-border);
  color: var(--muted);
  flex-shrink: 0;
  font-size: 1.4rem;
  padding: 4rem 2rem;
  text-align: center;
}

.site-footer p {
  color: #bbb;
}

.card {
  border: 1px solid var(--clr-border);
  padding: 2rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.card img {
  width: 100%;
}
.card h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 0.5rem;
}
.card p {
  color: var(--clr-muted);
  margin-bottom: 1.5rem;
}
.card a {
  color: var(--clr-accent);
  font-size: 1.4rem;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.cd-top {
  background: #111;
  border-radius: 50%;
  bottom: 2rem;
  height: 4.4rem;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 2rem;
  transition: opacity var(--trans), transform var(--trans);
  width: 4.4rem;
}

.cd-top::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 1.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -30%) rotate(45deg);
  width: 1.2rem;
}

.cd-top:hover {
  transform: translateY(-4px);
}

.cd-is-visible {
  opacity: 1;
  pointer-events: auto;
}

input, textarea {
  border: 1px solid #ccc;
  padding: 12px;
  width: 100%;
}

button {
  background: #8b2c2c;
  border: none;
  color: #fff;
  padding: 12px 30px;
}

.articles-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 2rem;
}

.article-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-link {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.card-image {
  aspect-ratio: 16/9;
  background: #eee;
  overflow: hidden;
}

.card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.card-body {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card-excerpt {
  color: var(--clr-text-soft);
  flex-grow: 1;
  line-height: 1.6;
}

.card-meta {
  align-items: center;
  color: var(--clr-muted);
  display: flex;
  font-size: 1.3rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.card-meta .read-more {
  font-weight: 600;
}

.contact-success-msg {
  padding: 2rem;
  text-align: center;
}

.pagination-link {
  margin-top: 20px;
  text-align: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 6px;
  justify-content: center;
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.pagination li {
  display: inline-block;
}

.pagination li a {
  cursor: pointer;
}

.pagination li a, .pagination li span {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-color: #bbb;
  border-radius: 4px;
  color: #222;
  display: inline-block;
  min-width: 38px;
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pagination li a:focus {
  outline: 2px solid #666;
  outline-offset: 2px;
}

.pagination li a:hover {
  background: #eee;
}

.pagination li.active span {
  background: #bbb;
  border-color: #999;
  color: white;
  font-weight: bold;
}

.pagination li.disabled span {
  background: #f5f5f5;
  border-color: #eee;
  color: #aaa;
  cursor: default;
}

.albums-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.5rem 0;
}

.alb-box {
  background: #ededed;
  border: 1px solid #333;
  height: 250px;
  padding: 10px;
}

.alb-box:hover {
  background: #eaf7e9;
}

.alb-box img {
  height: 150px;
  margin-bottom: 0.3em;
  width: 100%;
}

.alb-name p {
  margin: 0.3em;
  text-align: center;
}

figcaption {
  text-align: center;
}

figcaption h4 {
  margin: 0.5em 0;
}

h3.vc {
  font-size: 22px;
  margin: 40px 0 20px;
  position: relative;
}

h3.vc::after {
  background: #333;
  content: "";
  display: block;
  height: 3px;
  margin-top: 8px;
  width: 50px;
}

.comments-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 24px;
  transition: all 0.2s ease;
}

.comments-box:hover {
  border-color: #d0d0d0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.visitor-name {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.comment-date {
  color: #777;
  font-size: 13px;
  margin-bottom: 12px;
}

.comment-text {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  word-break: break-word;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.sub-title {
  color: var(--clr-muted);
}

.form-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin: 2rem auto;
  max-width: 600px;
  padding: 2rem;
}

fieldset {
  border: none;
}

.frm-control-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.frm-control-group label {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.frm-control-group input, .frm-control-group textarea {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.2rem;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease;
}

.frm-control-group input:focus, .frm-control-group textarea:focus {
  background: #fff;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  outline: none;
}

.form-field-error {
  animation: fadeIn 0.2s ease-in-out;
  color: #d93025;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.4rem;
}

#btnSubmit {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border: none;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  transition: all 0.25s ease;
}

#btnSubmit:hover {
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
  transform: translateY(-2px);
}

#btnSubmit:disabled {
  background: #bbb;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.success-msg {
  background: #e6f9f0;
  border-left: 4px solid #22c55e;
  border-radius: 6px;
  color: #166534;
  font-weight: 500;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 2;
    transform: translateY(0);
  }
}
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 22px;
  justify-content: space-between;
  width: 32px;
}

.nav-toggle-label span {
  background: var(--clr-muted);
  border-radius: 2px;
  height: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .photo-grid {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .header-inner {
    align-items: center;
    flex-wrap: wrap;
  }
  .nav-toggle-label {
    display: flex;
    margin-left: auto;
  }
  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    display: block;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .main-nav {
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 100;
  }
  .main-nav ul.menu {
    gap: 0;
  }
  .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .menu > li {
    border-top: 1px solid var(--clr-border);
  }
  .menu > li:first-child {
    border-top: none;
  }
  .menu a {
    display: block;
    font-size: 1.6rem;
    padding: 1.4rem 2rem;
  }
  .has-sub > .sub-menu {
    background: rgba(0, 0, 0, 0.02);
    display: block;
    padding-left: 1.5rem;
    position: static;
  }
  .has-sub > a::after {
    content: "▾";
    float: right;
    font-size: 1.2rem;
    opacity: 0.6;
  }
  .sub-menu li {
    border-top: 1px solid var(--clr-border);
  }
  .sub-menu a {
    font-size: 1.5rem;
    padding: 1.2rem 2rem;
  }
  .hero-inner {
    gap: 1.5rem;
    grid-template-columns: 150px 1fr;
    text-align: center;
  }
  .hero-content {
    padding-top: 0;
  }
  .featured-grid {
    display: block;
  }
  .frm-control-group, .albums-grid {
    display: block;
  }
}
@media (max-width: 576px) {
  .photo-grid {
    column-count: 1;
  }
  .photo-caption {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
