/* latin */
@font-face {
  font-family: 'roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(roboto-400-latin.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(roboto-400-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(playfair-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(playfair-500-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #fffdfa;
  color: #3c2c1f;
}

a {
  text-decoration: none;
  color: #bfa437;
}
a:hover {
  text-decoration: underline;
  color: #d4af37;
}

header {
  position: relative;
  background-color: #6f1d1b;
  color: #fff9e6;
  padding: 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.language-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
}
.language-switcher span {
  width: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
}
.language-switcher span:hover {
  transform: scale(1.2);
  text-shadow: 0 0 5px rgba(0,0,0,0.2);
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #f3ece2;
  padding: 0.75rem;
  font-weight: bold;
}
nav a {
  color: #6f1d1b;
  text-decoration: none;
}
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff9e6;
}
.hero-images {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}
.hero-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeCarousel 60s infinite;
}
.hero-images img:nth-child(1) { animation-delay: 0s; }
.hero-images img:nth-child(2) { animation-delay: 6s; }
.hero-images img:nth-child(3) { animation-delay: 12s; }
.hero-images img:nth-child(4) { animation-delay: 18s; }
.hero-images img:nth-child(5) { animation-delay: 24s; }
.hero-images img:nth-child(6) { animation-delay: 30s; }
.hero-images img:nth-child(7) { animation-delay: 36s; }
.hero-images img:nth-child(8) { animation-delay: 42s; }
.hero-images img:nth-child(9) { animation-delay: 48s; }
.hero-images img:nth-child(10) { animation-delay: 54s; }
@keyframes fadeCarousel {
  0% { opacity: 0; }
  5% { opacity: 1; }
  10% { opacity: 1; }
  15% { opacity: 0; }
  100% { opacity: 0; }
}
.hero-content {
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 12px;
}
.section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.55);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 1;
}
.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.calendar-controls button {
  background-color: #6f1d1b;
  color: #fff9e6;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}
.calendar-controls h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}
#calendar {
	background: linear-gradient(145deg, #fdfaf5, #f7f1e6);
	padding: 2rem;
	border-radius: 1rem;
}
table.calendar {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
}
table.calendar th,
table.calendar td {
  background: #f9f6f0;
  border-radius: 6px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  min-height: 2.5rem;
  cursor: pointer;
}
table.calendar th {
  background-color: #e4dcc3;
  font-size: 0.7rem;
  padding: 0.5rem 0.2rem;
}
table.calendar td.booked {
  background-color: #f4bebe;
  text-decoration: line-through;
  cursor: not-allowed;
}
table.calendar td.today {
  outline: 2px solid #6f1d1b;
  font-weight: bold;
}
.warning {
  color: red;
  font-size: 0.9rem;
}
form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
	background: linear-gradient(145deg, #fdfaf5, #f7f1e6);
	padding: 2rem;
	border-radius: 1rem;
}
form label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #5a4937;
  margin-bottom: 0.25rem;
}
form input,
form select,
form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  letter-spacing: 0.3px;
  background-color: #fffdfa;
  border: 1px solid #5a4937;
}
form textarea {
	resize:vertical;
}
form button {
  background: linear-gradient(to right, #d4af37, #bfa437);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
form button:hover {
  background: linear-gradient(to right, #bfa437, #a88f2a);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
form button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}
main {
  padding: 0rem 1rem;
}
footer {
  background-color: #6f1d1b;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
footer a {
  color: white;
  margin: 0 0.5rem;
}
footer p a:nth-child(1) {
  margin-left: 1.0rem;
}


#donation-container {
	float: right;
	width: 50%;
	background: linear-gradient(145deg, #fdfaf5, #f7f1e6);
	border-radius: 1rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	margin: 1rem;
	padding: 1rem;
	box-sizing: border-box;
}
@media (max-width: 800px) {
	#donation-container { float: none; width: inherit; }
}
@media (min-width: 800px) {
	#donation-container { float: right; width: 50%; }
}
#donation-container .button-row { text-align:center; margin: 1.5rem 0; }
#donation-container .lang-en { font-style:italic; }
#donate-button {
  background: linear-gradient(to right, #d4af37, #bfa437);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
}
#donate-button:hover {
  background: linear-gradient(to right, #bfa437, #a88f2a);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
#donate-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}