/* Fonts */
@font-face {
  font-family: 'Montserrat-Regular';
  src: url('fonts/MontserratRegular/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNextProRegular';
  src: url('fonts/AvenirNextProRegular/font.woff2') format('woff2'),
       url('fonts/AvenirNextProRegular/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'BodoniStdBookRegular';
  src: url('fonts/BodoniStdBookRegular/font.woff2') format('woff2'),
       url('fonts/BodoniStdBookRegular/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'BatrisyiaScriptAlternates';
  src: url('fonts/BatrisyiaScriptAlternates/font.woff2') format('woff2'),
       url('fonts/BatrisyiaScriptAlternates/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}



/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}


/* General */
body {
  font-family: 'Montserrat-Regular', Helvetica Neue, sans-serif;
  overflow-x: hidden;
  background-color: white;
  
}
main {
  flex: 1 0 auto; /* Allow main content to grow and push footer down */
}

/* Video hero section */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
  margin: 0 20%; /* Aligns with #mainContent horizontal margin */
  z-index: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
 /* border-bottom: 1px solid #ccc;*/
  z-index: 1000;
}

.header-free-spirit {
	font-family: BatrisyiaScriptAlternates, Helvetica Neue, sans-serif;
	font-size: 5rem;
	font-weight: 100;
}


#menuToggle {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.header-title {
  font-size: clamp(.7rem, 4vw, 1.8rem); /* 👈 scales with screen size */
  font-weight: 600;
  text-align: center;
  color: #000;
}

/* Side Navigation */
.side-nav {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100%;
  background-color: #fff;
  color: #7c7c7c;
  transition: left 0.8s ease;
  z-index: 1001;
  padding: 2rem 1.5rem;
}

.side-nav.open {
  left: 0;
}

.side-nav nav {
  display: flex;
  flex-direction: column;
}

.side-nav a {
  color: #7c7c7c;
  text-decoration: none;
  font-size: 1.8rem;
  margin: 1rem 0;
  font-family: 'BodoniStdBookRegular', sans-serif;
}

/* start of bird section on index */


.main-container-home {
	position: relative;
	top: 70px;
	display: flex;
	flex-direction: column;
	min-height: calc(100%-60px);
	padding-bottom: 80px;
	margin-bottom: 60px;
}

.water-big-wrapper {
	width:100%;
	max-width: 1600px;
	margin: 0 auto;
}

.water-video-container {
  position: relative;
  width: 100%;
  display: block;
  height: auto;
  max-height: 100vh;
}


.global-module-layout-home {
	height: 100%;
	margin-bottom: 20px;
	overflow:hidden;
}

/* Make video responsive */
#waterVideo {
  width: 100%;
  height: auto;
  min-height: 50vh; /* Optional: constrain height on smaller screens */
  object-fit: cover;
  display: block;
}



.logo-section {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center vertically */
  align-items: center;     /* Center horizontally */
  text-align: center;
  height: 100%;        
  padding: 1rem;
}

.bird {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.middlebird {
	margin-top:-13px;
	margin-bottom: 10px;
}

#fsp-birdlogo {
  max-width: 100%;
  height: auto;
}

.logo-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.companyname {
	font-family: BatrisyiaScriptAlternates, 'Montserrat-Regular', sans-serif;
	font-size: 90px;
}



.subtitle {
  font-family: 'AvenirNextProRegular', sans-serif;
  font-size: 2rem;
  margin: 0;
}


.water-controls {
  position: absolute;
  width: 20%;
  bottom: 2.5vw;
  right: 2.5vw;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 22px;
  z-index: 10;
}

.water-controls-mute,
.water-controls-play {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.water-controls-mute.muted {
  background-image: url("images/white-mute-off.svg");
}

.water-controls-mute.unmuted {
  background-image: url("images/white-mute-on.svg");
}

.water-controls-play.paused {
  background-image: url("images/white-play.svg");
}

.water-controls-play.playing {
  background-image: url("images/white-pause.svg");
}
	
	
	


/* Stack the items on smaller screens */
@media (max-width: 768px) {
  .logo-section {
    flex-direction: column;
  }

  .bird,
  .logo-text {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 370px) {
  .companyname {
    font-size: 4rem; /* or use a smaller size like 1.2rem if needed */
  }
  
  .subtitle {
   font-size: 1.5rem;
  margin: 0;
}

}

@media (max-width: 270px) {
  .companyname {
    font-size: 3rem; /* or use a smaller size like 1.2rem if needed */
  }
  
  .subtitle {
   font-size: 1rem;
  margin: 0;
}

}


@media (max-width: 214px) {
  .companyname {
    font-size: 2rem; /* or use a smaller size like 1.2rem if needed */
  }
  
  .subtitle {
   font-size: .7rem;
  margin: 0;
}

}

/*  end of bird section on index */




#closeBtn {
  background: none;
  color: #282828;
  border: none;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: bold;
}

#closeLbl {
  color: #7c7c7c;
  margin-left: 20px;
  font-weight: normal;
}

/* Main Content */


#mainContent {
  padding-top: 60px; /* push below fixed header */
  /*width: 70%;*/
  margin: 0 20% 0 20%;
}

#filmsTitle {
  font-size: 5rem;
  text-align: center;
  margin: 8rem 0rem 0rem 0rem;
  font-family: 'BodoniStdBookRegular', sans-serif;
  font-weight: 400;
}

.div2 h2 {
  font-size: 2.5rem;
  text-align: left;
  margin: 0rem 0rem 1rem 0rem;
  font-family: 'BodoniStdBookRegular', sans-serif;
  font-weight: 400;
  display: block;
  margin-left: 0;
}





/*Films page*/

.container {
  display: flex;
  gap: 2rem;              /* optional spacing between divs */
 /* padding: 0 100px;  */     /* 100px left/right */
  flex-wrap: wrap;        /* allows stacking on small screens */
}

#filmpageintro {
	max-width: 80%;
	text-align: center;
	margin: 40px auto 60px auto;
}


.spaceabove1 {
	margin-top: 10px;
}


.div1 {
  flex: 4;                /* 3 parts of the total 5 */
  min-width: 250px;       /* ensures it doesn't shrink too much */
  max-width: 800px;
  text-align: center;
}

.div2 {
  flex: 1;
  min-width: 200px;
  max-width: 800px;
  display: flex;
  flex-direction: column;     /* stack children vertically */
  justify-content: center;    /* center vertically inside container */
  padding: 1rem;
  margin: 0 auto;
}

.container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.filmdesc {
  font-family: AvenirNextProRegular, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  max-width: 100%;
}

/* Optional: Make the divs stack on small screens */
@media (max-width: 1900px) {
  .container {
    flex-direction: column;
    padding: 0 0px; /* reduce side padding for mobile */
	align-items: center; /*horizontally center children */
	
  }

 
 .div1,.div2 {
    width: 100%;  /* optional but ensures full width stacking */
	max-width: 800px;
  }
  
}




/*  Trailer button  and Modal */

.trailer-button {
  all: unset;
  padding:3px;
  background-color: transparent;
  color: black;
 /*  border: 1px solid black;*/
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0px;
  transition: background 0.3s ease;
  margin-top: 5px;
  font-family: AvenirNextProRegular, sans-serif;
  font-size: 16px;
  
}

.trailer-button:hover {
  color: red;
  background-color: transparent;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,1);
}

.modal-content {
  position: relative;
  background-color: transparent; /* remove white background if not needed */
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 1920px;
  box-shadow: none; /* optional */
}
.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: red;
}

/* Responsive iframe */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.close-modal {
  position: absolute;
  top: -40px; /* pull it above the video */
  right: 3px;
  font-size: 32px;
  color: white;
  background: transparent;
  cursor: pointer;
  z-index: 10; /* ensure it's above iframe */
}





/* slidedhow  */
.liaigre-carousel {
  max-width: 700px;

  margin-top: 30px;
  margin-left: 40%;

  font-family: AvenirNextProRegular, 'Helvetica Neue', sans-serif;
  
}

.carousel-window {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

/* Lay out image and text side-by-side */
.slide-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: right;
  flex-wrap: wrap;
 
}

.slide-content img {
 /* width: 45%;*/
 width: auto;
  max-height: 400px;
  border: 1px solid #ccc;
}

.caption {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: left;
   
}

.slideTitle {
	font-family: BodoniStdBookRegular, sans-serif;
	font-size: 14px;
}

.slideDesc {
	font-family: AvenirNextProRegular, 'Helvetica Neue', sans-serif;
	
}

.caption h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.caption p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Navigation buttons BELOW the carousel */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  
  
}

.nav-button {
   background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  transition: transform 0.3s ease;
}

.nav-button:hover {
  transform: scale(1.1);
}

.nav-button svg {
  width: 12px;
  height: auto;
  fill: #282828;
}


/*content for LEFT */
#LEFTsection {
	margin-top: 100px;
	margin-bottom: 100px;
}
	
	
.div3 {
  flex: 2; /* smaller portion */
  min-width: 200px;
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.div3 h2 {
  font-size: 2.5rem;
  text-align: left;
  margin: 0rem 0rem 1rem 0rem;
  font-family: 'BodoniStdBookRegular', sans-serif;
  font-weight: 400;
  display: block;
  margin-left: 0;
}

.div4 {
  flex: 3;
  min-width: 250px;
  max-width: 800px;
  display: flex;
  flex-direction: column; /* Stack image and text vertically */
  justify-content: center;
  align-items: center;     /* Horizontally center content */
  text-align: center;      /* Center the text itself */
  padding: 1rem;
}

.comingfuture {
  margin-top: 12px;
  font-family: AvenirNextProRegular, sans-serif;
  font-size: 16px;
  color: black;
}

a {
	text-decoration: none;
	color: #333;
	font-weight: 400;
}

a:hover {
	color:red;
}

/*MEDIA queries*/

@media (max-width: 1700px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .div3, .div4 {
    width: 100%;
    max-width: 800px;
    text-align: center;
  }

  .div3 {
    order: 2; /* Optional: put text below image on small screens */
  }

  .div4 {
    order: 1;
  }
}



/*divider*/



.divider {
	max-width:500px;
	margin: 100px auto;
}

.divider img {
	width:100%;
}




/* Responsive */

/* Optional: Make the divs stack on small screens */
@media (max-width: 1700px) {
  .liaigre-carousel {
  max-width: 700px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
}  /* <-- closed this media block */

@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .caption {
    text-align: center;
	padding: 3px;
  }

  .slide-content img {
   /* width: 100%;*/
	height: 400px;
  }
}



@media (max-width: 600px) {
	.liaigre-carousel {
	}
	
	#mainContent {
		margin:0;
	}

	.div1, .div2 {
		padding: 0 10px;
	}
	
	.no-padding {
		padding:0;
	}
	/*.slide-content img {
  max-width: 300px;
	}*/
	
	
}	



/* --------------------- FOOTER ---------------- */

footer {
  text-align: center;
  border-top: 1px solid #e0e0e0; /* light grey */
}

footer .socials img {
  width: 16px;
  margin: 0 0.5rem;
  /*filter: invert(1);*/
}

footer p {
	font-family: 'AvenirNextProRegular', Helvetica Neue,sans-serif;
	font-size: 12px;
    padding: 20px;
}

.socials {
    padding:10px;
}





























