@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  background: #fff;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #333;
  background: #fff;
    margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; 
}
a{ color:#222; font-weight:bold;}

/*SLIDER*/
.prgslider {
  position: relative;
  width: 100%;     /* mobile safe */
  height: 90vh;   /* full screen */
  overflow: hidden;
}

.prgslide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.prgslide.active {
  opacity: 1;
}

.prglogo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  max-height: 120px;
}
.overlay {
  position: absolute;
  bottom: 20px;        /* distance from bottom of slider */
  left: 0px;          /* optional horizontal padding */
  right: 0px;         /* optional max width */
      /* single line */
  overflow: hidden;         /* clip overflowing text */
 

}
.overlay-text {
 
 
  color: #fff;
  font-size: 5em;
  font-weight: bold;
  white-space: nowrap;      /* single line */
  overflow: hidden;         /* clip overflowing text */
  text-overflow: ellipsis;  /* show ... if text is too long */
  opacity:.4;
  padding: 0.5em 1em;
}
@media (max-width: 768px) {
  .overlay-text {
    font-size: 2em;
  }
}
/*MENU*/
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logo */
.logo img {
  max-height: 50px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #0077cc;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none; /* hidden by default */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}
.flex{ display:flex; align-items:center; justify-content:center; gap:2em; }
.flex div{ width:50% }
.contain{   box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  width: 100%;}
 .pad{ padding:1em;}
@media (max-width: 768px) {
  .flex{ display:inline;}
  .flex div{ width:100% }
	.video {
	   position: relative;
  padding-bottom: 75%;
  height: 100vh;
	}
	.video-container iframe{
	     position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
	}
}
.video {
  position: relative;
  padding-bottom: 75%;
  height: 0px;
}

.video-container iframe{
   position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 85%;
}

.mobile{display:none}
.bannermessage{ text-align:center;padding:1em; background-color:#444; color:#fff;}
.hero-bg-text {
  position: absolute;
  top: 0%;
  left: -1%;
  transform: translate(-1%, -0%);
  font-size: 10em;           /* responsive large text */
  font-weight: 900;
  
  white-space: nowrap;
  user-select: none;          /* optional: prevent selection */
  pointer-events: none;       /* click-through */
  text-align: center;
}
#Coupon{ border: thick dotted grey; padding:1em; margin:1em; color:#333;  }
#Coupon span{ font-size:1.5em; }
#Coupon{ font-size:.8em; }

@media (max-width: 768px) { 
	#Coupon{ width:100%;}
}
.input, textarea{ width:95%; border-radius:10px; }