:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --accent: #c9a227;
  --accent-dark: #a88419;
  --light: #faf8f0;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: 'titillium';
  src: url('/fonts/TitilliumWeb-Regular.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "titillium", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.site-header {
  width: 100%;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 10;
}

.site-header.hide {
  opacity: 0;
  pointer-events: none;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header-contact {
  margin-left: auto;
  font-size: 2.5rem;
  font-weight: bold;
}

.header-contact a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-contact a:hover {
  color: var(--accent);
}


.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  font-weight: 800;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.content h2 {
  color: var(--accent-dark);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  border-left: 5px solid var(--accent);
  padding-left: 0.5rem;
}

.content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.bulleted li {
  margin-bottom: 0.4rem;
}

/* TEXT + IMAGE SECTIONS */
.block-image,
.grid-image,
.content section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}


.content section:nth-child(odd) {
  flex-direction: row;
}


.content section:nth-child(even) {
  flex-direction: row-reverse;
}


.block-image img,
.grid-image img,
.image-block img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}


.text-block {
  flex: 1 1 50%;
}

.text-block ul {
  margin-top: 0.5rem;
  margin-left: 1.2rem;
  padding-left: 1rem;
  list-style-position: outside;
}

.text-block li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.text-block h2 {
  margin-bottom: 0.8rem;
}


/* FOOTER */
.site-footer {
  background: var(--light);
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 3rem 1rem 2rem;
  box-shadow: var(--shadow);
}

.site-footer img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--accent-dark);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .footer-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.call-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 50;
}

.call-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.call-btn svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {

  .block-image,
  .grid-image {
    flex-direction: column;
    align-items: flex-start;
  }

  .block-image img,
  .grid-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* ANIMATIONS */
.js .reveal-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.loaded .hero-content {
  animation-delay: .1s;
}

.loaded .container {
  animation-delay: .2s;
}

.loaded .site-footer {
  animation-delay: .3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .content section {
    flex-direction: column !important;
  }

  .image-block img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;

  }

  .site-header {
    padding: 1rem 1.2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .header-contact {
  font-size: 2rem;
}
}