/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

.caption {
  font-size: 0.85em;      /* smaller text */
  color: #888888;          /* gray color */
  font-style: italic;      /* italics */
  display: block;          /* optional: puts caption on its own line */
  margin-top: 0.3em;       /* optional spacing from main text */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #222;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #d1a82d;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://travelcultura.com/wp-content/uploads/2022/02/church-of-the-saviour-on-spilled-blood-st-petersburg-russia-travelcultura.com_.jpg') center/cover no-repeat;
  text-align: center;
  padding: 8rem 2rem;
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  postion: relative;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  color: #ccc;
}

.hero button {
  padding: 0.8rem 2rem;
  background-color: #d1a82d;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #111;
  transition: background-color 0.3s;
}

.hero button:hover {
  background-color: #b3891f;
}
#scrollBtn {
  padding: 0.8rem 2rem;
  background-color: #d1a82d;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  color: #111;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#scrollBtn:hover {
  background-color: #b3891f;
}

/* Sections */
.section {
  padding: 4rem 3rem;
  border-bottom: 1px solid #222;
}

.section h2 {
  font-size: clamp(1.8rem, 5vw, 2rem);
  margin-bottom: 2rem;
  color: #d1a82d;
}

/* Cards Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #111;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  background-color: #1a1a1a;
  border: 1px solid #fff;
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}

.card p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background-color: #111;
  border-top: 1px solid #222;
  color: #888;
}
