@import url("https://fonts.googleapis.com/css2?family=Alkatra&family=Roboto:wght@400;500&family=Sedgwick+Ave+Display&display=swap");

:root {
  --primary-color: #0ea5e9;
  --primary-color-dark: #0284c7;
  --text-light: #f3f4f6;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
  height: 100%;
  overflow: hidden;
}	
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9); /* fallback color */
  background-image: url("assets/'bg.jpg?raw=true.jpg'"); /* 👈 your image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.main {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  position: relative;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
nav {
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {

color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
}

nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--primary-color-dark);
}



.content {
  text-align: center;
  color: var(--text-light);
}

.content h1 {
  font-family: "Sedgwick Ave Display", cursive;
  font-size: 7rem;
}

.content h1 span {
  font-size: 5rem;
}

.content p {
  font-family: "Alkatra", cursive;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.content .promo {
  padding: 0.5rem;
  width: 300px;
  margin: auto;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-family: "Alkatra", cursive;
  background-color: var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.bg__video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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

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

.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* === OVERLAY POPUP === */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Social Media Icons Styling */
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  color: var(--text-light);
  text-decoration: none;
}

.social-icons a svg {
  width: 40px;
  height: 40px;
  fill: white;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icons a:hover svg {
  
transform: scale(1.2);
  fill: var(--primary-color);
}
.site-link a{
	font-size: 0.8rem; /* or use px like 18px */

height:10px;
width:10px;
left: 1px;
  margin-bottom: 0; /* optional */
}
/* Enter Button */
.enter-btn {
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  transition: background-color 0.3s ease;
}

.enter-btn:hover {
  background-color: var(--primary-color-dark);
}

/* Hidden Main Content by Default */
#mainContent {
  display: none;
  padding: 40px;
  text-align: center;
  overflow: auto;
  height: 100%;
}

.site-link a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease;
}

.site-link a:hover {
  color: var(--primary-color);
}

