/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0f0a;
    color: #fff;
    height: 100%; /* Full height for background sections */
}

/* Landing Section */
#landing {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    overflow: hidden;
}

/* Landing Video Container */
#landing .video-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

#landing .video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    border: 0;
}

/* Fix for ultra-wide screens in Landing */
@media (min-aspect-ratio: 16/9) {
    #landing .video-container iframe {
        min-width: 100vw;
        min-height: calc(100vw * 9 / 16);
    }
}

/* Landing overlay (title/text) */
.landing-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 90%;
    transform: translateY(-50%);
    color: #00ff88;
    font-family: 'Montserrat', sans-serif;
}

.scroll-indicator {
    margin-top: 20px;
    font-size: 1.5rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}


/* Text banner at the bottom of landing */

.text-banner {
  position: absolute;
  bottom: 0;              /* sits at bottom of video */
  left: 0;
  width: 100%;
  height: 32px;            /* thin like footer */
  overflow: hidden;
  background: 0; 
  display: flex;
  align-items: center;
}

.text-banner p {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9rem;
  color: #00ff88;
  padding-left: 100%;      /* start fully off screen */
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



/* Full Video Showcase Section */
#full-video-showcase {
    position: relative;
    width: 100%;
    background-color: black;
}

/* Full Video Showcase Container */
#full-video-showcase .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* keeps 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

#full-video-showcase .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Work Showcase Section */
#showcase {
  padding: 50px 50px;
  background: #111;
  color: white;
  text-align: center;
}


/* Responsive Grid */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
  justify-items: center;
}

.poster-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.poster-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fade-in effect Grid*/

.poster-grid img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.poster-grid img.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
#about {
    padding: 50px 20px;
    background-color: #111;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* Contact Section */
#contact {
    background: radial-gradient(circle 60rem at 50% 50%, #00b07eff 0%,  #00b07eff 5%, #00584af2 70%);
    padding: 50px 20px;
}

#contact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #00FF88;
}

#contact form {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#contact input, 
#contact textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

#contact button {
    background-color: #00FF88;
    color: #666666;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact button:hover {
    background-color: #00cc66;
}

.contact-info {
    display: flex;
    flex-direction: row; /* one row layout */
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    font-size: 1.1rem;
    background: transparent; /* fully transparent background */
    box-shadow: none; /* remove frame effect */
}

.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #00ff88;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column; /* stack on smaller screens */
        gap: 15px;
        max-width: 90%;
        padding: 15px;
        font-size: 1rem;
    }
}



/* Footer */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

footer {
    text-align: center;
    padding: 0; /* minimal height */
    background-color: #fffb00ff; /* bright yellow */
    color: #000; /* black text */
    font-size: 0.75rem;
    line-height: 0;
}


#contact {
    margin-bottom: 0; /* no gap before footer */
}

/* Burger Menu */
.burger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu div {
  width: 25px;
  height: 3px;
  background-color: #00ff88;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Burger active (X animation) */

.burger-menu.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active div:nth-child(2) {
  opacity: 0;
}
.burger-menu.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.burger-menu div {
  transition: all 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 200px;
  height: 100%;
  background: rgba(255, 131, 159, 0.96);
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  box-sizing: border-box;
  transition: right 0.7s ease-in-out; /* smooth slide */
  z-index: 1000;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00ff99;
}

.nav-menu.open {
  right: 0; /* slides in */
}


