/* Importing a Google Font */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap')
;
/* Changing the main font and background colour */

body {
	font-family: "Nunito Sans", sans-serif;
	background-color: #f1f2f2;

}
/* Changing the background colour for the header */

header {
	font-family: "Righteous", sans-serif;
	background-color: transparent
;
}

.custom-bg-red {
    background-color: #ff3131;
    color: black;
}


/* Changing the background color for the navigation bar */



.navbar {
	font-family: "Righteous", sans-serif;
	background-color: #ff3131;
}

/* Effect on social media buttons */

footer a:hover {
	opacity: .5;
}

/* Corporate navbar */

#navbar-corporate a.active {
	color: #ff3131;
	font-weight: bold;
}

/* Hero Section shadow */

.white-shadow {
	text-shadow: -.01em -.01em .01em white,
		.02em .02em .02em white,
		0 0 .2em white,
		0 0 .5em white;
}

.righteous-regular {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.righteous-regular-big {
  font-family: "Righteous", sans-serif;
  font-size: 100px;
  font-weight: 400;
}

.righteous-regular-smol {
  font-family: "Righteous", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.back-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	z-index: -1;
}

.button-container {
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translate(-50%, -50%);
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
 
}


.button-container:hover {
    background-color: white !important;
    color: #212529 !important;
	border-color: white !important;
	box-shadow: none !important;
}

.skip-intro-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
	transition: opacity 0.8s ease, visibility 0.8s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	
}


.skip-intro-btn:hover {
    background-color: white !important;
    color: #212529 !important;
	border-color: white !important;
	box-shadow: none !important;
	}

.skip-intro-btn.hidden {
    opacity: 0;
    visibility: hidden;
}

.figma-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    background-color: black;
    padding: 0px 10%;
}

.figma-text {
    color: white;
    max-width: 600px;
	margin-top: -50px;
	font-size: 1.2rem;
}

.app-features {
	margin-top: 0px
}

.app-features {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 10 px 0;
}

.figma-demo iframe {
    width: 90vw;
    max-width: 450px;
    aspect-ratio: 9 / 19.5;
    border: none;
}

.features-title {
	margin-top: 70px;
}

.bg-hero {
  background-image: url("../images/carousel/focused-seats.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
	
}

.responsive-image {
    max-width: 20%;
    height: auto;
	
}

.responsive-image2 {
    max-width: 100%;
    height: auto;
}

.responsive-image3 {
    max-width: 110%;
    height: auto;
}

header {
  padding: 2rem 0;
  text-align: center;
  color: white;
}

header {
  padding: 2rem 0;
  text-align: center;
  color: white;
}


@media (min-aspect-ratio: 16/9){
	.back-video{
		width: 100%;
		height: auto;
	}
}

@media (max-aspect-ratio: 16/9){
	.back-video{
		width: auto;
		height: 100%;
	}
}

#navbar {
    animation: fadeIn 3s ease; /* Fade in animation */
}

#footer {
    animation: fadeIn 3s ease; /* Fade in animation */
}

#button {
    animation: fadeIn 3s ease; /* Fade in animation */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
