/* Global reset and layout */
html, body { margin:0; width:100%; max-width:100%; overflow-x:auto !important; }

* {
  box-sizing: border-box;
  font-family: "Bebas Neue", sans-serif;
}

:root {
  --accent-blue: #1cc7ff;
}

body {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  color: #000000;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Hard guards against horizontal overflow */
* { 
	box-sizing: border-box; 
}

/* Layout container */
.page { 
	display: block !important;
	min-width: 0; 
}

/* Centered content column */
.container { 
	width: 100%; 
	max-width: 1100px; 
	margin: 0 auto; 
	padding: 1rem; 
}

/* Header */
.site-header { 
	display: block; 
}

.brand { 
	display: flex; 
	flex-direction: column; 
	align-items: flex-start; 
	gap: 0.3rem; 
}

.site-logo { 
	display: block; 
	width: 80%; 
	max-width: 100%; 
	height: auto; 
	margin: 0 auto 20px auto;
}

/* Tighter contact spacing */
.contact { 
	margin: 0 auto; 
	font-family: 'Bebas Neue', sans-serif; 
	font-size: 2.5rem; 
	line-height: 1.1; 
	text-align: center;
}

.contact a { 
	color:inherit; 
	text-decoration:none; 
}
.contact a:hover { 
	text-decoration: underline; 
	color: var(--accent-blue);
}
    
.line{
  width:100%;
  height:10px;           /* thickness of the bar */
  background:#f5c242;       /* or #F00 if you want red */
  border:0;
  align-self:stretch;    /* override flex-start */
  margin-top:0.5rem;
}


/* Gallery iframe: responsive, never causes horizontal overflow */
.lightwidget-wrap { 
	padding-top: 0; 
}

.lightwidget-widget {
  display:block;
  width:100%;
  max-width:100%;
  border:0;
  overflow:hidden;
  /* If any parent is flex, prevent weird min-content overflow */
  flex:none;
  min-width:0;
}

/* Optional center alignment on narrow screens */
@media (max-width: 800px) {
  .brand { align-items:center; text-align:center; }
}



.testimonial {
	width: 100%;
	max-width: 800px; 
	margin: 0 auto 1rem auto;
	font-family: "Bebas Neue", sans-serif;
	background: -webkit-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 20px;
	padding: 2rem;
}

section h1 {
	font-size: 3rem;
	text-align: center;
}

.testimonial p {
	font-size: 1.5rem;
	margin: 0;
}

.testimonial_name {
	margin-bottom: 2rem !important;
	text-align: center;
	font-style: italic;
	color: #227700;
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .site-logo {
    transition: none;
  }
}


