/*
Theme Name: takos-church
Author: 
Description: Child Them of 2025
Version: 1.0
Template: twentytwentyfive

This is the child theme for Twenty Twenty-Five theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

/* scroll snap */
html {
    scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
}

.snap-scroll {
	scroll-snap-align: start;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  height: 80px;
  padding-top: 5px;
}

@media (max-width: 1024px) {
  .site-header {
    height: 70px;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 60px;
  }
}


p, h1, h2, h3, h4, h5, h6 {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}