* {
	margin: 0;
	padding: 0;
  box-sizing: border-box;
}

body {
	font-family: "gira-sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	font-style: normal;
	line-height: 1.4;
	color: rgba(75, 35, 30, 1);
	
	margin: 1em;
	
	background-color: #e6dede;
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem; /* Small padding on mobile */
	border-radius: 43px;
	
	background-color: #faf5f5;
}

/* FONTS - - - - - - - - - - - - - - - - - - -*/

h1 {
	font-family: "aria-text-g2", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	font-style: normal;
}

.single h1 {
	font-size: 2rem;
}

.single h1::before {
  content: '';
  position: absolute;
  width: 17rem;
  height: 3px;
  transform: translate(-18rem, 1.3rem) scaleX(0);
  transform-origin: left;
  background-color: rgba(170, 30, 45, 1);
  animation: lineExpandH1 2s cubic-bezier(.6,.5,0,.99) .5s forwards;
}

h2 {
	font-family: "aria-text-g2", sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
	font-style: normal;

}

h2::before {
  content: '';
  position: absolute;
  width: 6rem;
  height: 3px;
  transform: translate(-7rem, 1rem) scaleX(0);
  transform-origin: left;
  background-color: rgba(170, 30, 45, 1);
  animation: lineExpandH2 2s cubic-bezier(.6,.5,0,.99) .5s forwards;
}

@keyframes lineExpandH1 {
  to {
    transform: translate(-18rem, 1.3rem) scaleX(1);
  }
}

@keyframes lineExpandH2 {
  to {
    transform: translate(-7rem, 1rem) scaleX(1);
  }
}

h3 {
	font-family: "aria-text-g2", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	color: rgba(170, 30, 45, 1);
	
	margin-bottom: 1rem;
}

a {
	font-family: "aria-text-g2", sans-serif;
	color: rgba(75, 35, 30, 1);
	text-decoration: none;
	
	transition: all 0.3s ease;
	cursor: pointer !important;
}

h1 a, h2 a, h3 a, p a {
	border-bottom: 1px solid rgba(170, 30, 45, 1);
}

a:hover {
	color: rgba(170, 30, 45, 1);
}

a.button {
  display: block;
  position: relative;
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
	border-bottom: none;
  background: linear-gradient(
    to right,
    rgba(170, 30, 45, 1) 0%,
    rgba(170, 30, 45, 1) 50%,
    rgba(75, 35, 30, 1) 50%,
    rgba(75, 35, 30, 1) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease-out 0.3s;
}

a.button:hover {
  background-position: 0 0;
	transition: background-position 0.3s ease-in;
}

a.button::after {
	font-family: "aria-text-g2", sans-serif;
	content: '';
	position: absolute;
	width: 2.5rem;
	height: 1rem;
	
	margin: .6rem 0 0 .6rem;
	
	background-image: url("images/arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	
	transition: all 0.3s ease-in;
}

a.button:hover::after {
	margin: .6rem 0 0 1rem;
	transition: all 0.3s ease-out 0.3s;
}

/* LANGUAGE SWITCH - - - - - - - - - - - - - - - - - - - */

.language-switch {
	max-width: 1200px;
  margin: 0 auto .5rem auto;
	padding: 0 7.5rem;
	
	color: rgba(70, 35, 30, 1);
  font-size: 0.85rem;
	text-align: right;
}

.language-switch a {
	font-family: "gira-sans", sans-serif;
	color: rgba(70, 35, 30, 1);
	text-decoration: none;
	
	transition: all 0.3s ease;
}

.language-switch a:hover {
	color: rgba(170, 30, 45, 1);
}

.language-switch .active {
	font-weight: 500;
}


/* HAEDER - - - - - - - - - - - - - - - - - - - */

header {
	color: white;
	padding: 3rem 7rem; /* Small padding on mobile */
	text-align: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Important for top alignment */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* LOGO - - - - - - - - - - - - - - - - - - - */
#logo {
  width: 280px;
	transition: transform 0.3s ease;
}

#logo:hover {
  transform: scale(1.025);
}

#logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* NAVIGATION - - - - - - - - - - - - - - - - - - - */
.header-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  align-items: flex-end;
  height: 100%;
  min-height: 5rem;
  padding-left: 1rem;
}

nav {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}

nav a {
	font-family: "gira-sans", sans-serif;
	font-weight: 400 !important;
  position: relative;
  color: rgba(170, 30, 45, 1);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: rgba(170, 30, 45, 1);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

nav a:hover {
	text-decoration: none;
  transform: translateY(-0.3rem);
}

nav a:hover::after {
  transform: scaleX(1);
}

/* MAIN - - - - - - - - - - - - - - - - - - - */
main {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}
main.fade-out { opacity: 0; }
main.fade-in { opacity: 1; }

section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 2rem auto 0;
  border-radius: 43px;
	background-color: rgba(210, 190, 190, 0.15);
}

section:first-of-type {
  margin: 0 auto 0;
}

.intro.left {background-color: rgba(210, 190, 190, 0.0);}

.content {
  border-radius: 43px;
  padding: 3rem 7rem;
  background-color: rgba(210, 190, 190, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Width distribution: Left 2/3, Right 1/3 */
.intro.left {
  flex: 2;
}

.intro.right {
  flex: 1;
}

/* SINGLE COLUMN - - - - - - - -*/
.content.single {

}

.single {
	background-color: rgba(210, 190, 190, 0.0);
  margin-left: 11rem;
  margin-right: 0;
}

.single p {
	font-size: 1rem;
	margin: 1rem 0;
	min-width: 400px;
	
  -moz-column-count: 2;
  -moz-column-gap: 40px;
  -webkit-column-count: 2;
  -webkit-column-gap: 40px;
}


.single img {
	width: calc(100% + 7rem);
	border-radius: 42px;
	margin: -3rem 0 2rem 0;
}

/* GALLERY - - - - - - - -*/
section#gallery {
  background-color: rgba(210, 190, 190, 0);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.5rem; /* ðŸ’¥ Adds spacing between .content items */
}

#gallery .content {
	padding: 3rem 0 0 0 ;
	transition: all 0.3s ease;
}

#gallery .content img {
	border-radius: 40px;
	width: 100%;
	transition: all 0.3s ease;
}

#gallery a:hover .content {
  background-color: rgba(210, 190, 190, 0.3);
}

#gallery a:hover .content img{
  transform: scale(1.01);
}

/* SECONDARY IMAGE */
.secondary-image {
	margin: 2rem 0 2rem 0 !important;
}


/* ACCORDION - - - - - - - -*/
.accordion {
  padding: 0;
}

.accordion-item {
  border: 1px solid rgba(170, 30, 45, 0.3);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  color: rgba(75, 35, 30, 1);
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s ease;
	color: rgba(170, 30, 45, 1);
}

.accordion-item.open .accordion-header::after {
  content: '-';
}

.accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 .5rem;
  transition: all 0.4s ease;
}

.accordion-item.open .accordion-body {
  max-height: 500px; /* adjust as needed */
  opacity: 1;
  padding: 1rem 1.5rem;
}

/* FOOTER - - - - - - - - - - - - - - - - - - -*/
footer {
	max-width: 1200px;
  margin: 0 auto;
	text-align: center;

	padding: 1rem;
	margin-top: 2rem;
	
	opacity: .5;
}

footer p {
	font-size: .85rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* fallback in tight spaces */
}

.social {
  display: inline-flex; /* Switch to flex so we can center content */
  align-items: center;
  justify-content: center;

  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;

  border: 1px solid rgba(75, 35, 30, 1);
  border-radius: 50%;
	cursor: pointer;
}

.social:last-of-type {
  margin-right: 2.5rem;

}

.social:hover {
	background-color: #faf5f5;
}

.social img {
  width: 1rem;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-text {
  font-size: 0.85rem;
}


/* MOBILE - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 975px) {
  body {
    font-size: 16px;
    margin: 0.5rem;
  }
	
	.single h1::before {
		width: 4rem;
		transform: translate(-4rem, 1.3rem) scaleX(0);
		transform-origin: left;
		animation: lineExpandH1Mobile 2s cubic-bezier(.6,.5,0,.99) .5s forwards;
	}

	@keyframes lineExpandH1Mobile {to {transform: translate(-4rem, 1.3rem) scaleX(1);}}

	h2::before {
		width: 2rem;
		transform: translate(-2.2rem, .8rem) scaleX(0);
		transform-origin: left;
		animation: lineExpandH2Mobile 2s cubic-bezier(.6,.5,0,.99) .5s forwards;
	}
	
	@keyframes lineExpandH2Mobile {to {transform: translate(-2.2rem, .8rem) scaleX(1);}	}

  .language-switch {
    padding: 0 1rem;
    font-size: 0.75rem;
    text-align: center;
  }
	
	.site-wrapper {
		border-radius: 33px;
	}

  header {
    padding: 2rem 1rem;
  }

  .header-inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 0.5rem;
	}

	#logo {
		width: 210px;
		margin-bottom: 0.5rem;
	}

	.header-right {
		align-items: flex-start;
		padding-left: 0;
		width: 100%;
    min-height: 2.5rem;å
	}

	nav {
		display: flex;
		flex-wrap: wrap;
		gap: 1.5rem;
		justify-content: flex-start;
		width: 100%;
	}

  section {
    flex-direction: column;
    margin-top: 1rem;
    border-radius: 30px;
  }

  .content {
    padding: 2rem 1rem;
    border-radius: 30px;
  }

  .intro.left,
  .intro.right {
    flex: 1;
  }

  .single {
    margin: 0;
  }

  .single p {
    column-count: 1 !important;
    min-width: auto;
  }

  .single img {
    width: 100%;
    margin: 0 0 1.5rem 0;
  }

  #gallery {
    flex-direction: column;
  }

  #gallery .content {
    padding: 2rem 0 0 0;
  }

	#gallery .content img {
		border-radius: 30px;
	}


  .footer-social {
    margin-bottom: 1rem;
  }

  .footer-text {
    font-size: 0.75rem;
  }

  .social:last-of-type {
    margin-right: 0;
  }
}


