/* Importing Fonts for CSS from Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(178deg, rgb(0, 0, 0) 0%, #000000 100%);
}

/* ------------------------------------------------ */
/* Colors for RWD Website  */
/* Background: #0F0F0F 
   Primary Accent: #FF3C38 
   Text (Main): #FFFFFF 
   Text (Muted/Secondary): #B0B0B0 
/* ------------------------------------------------ */

/* ------------------------------------------------ */
/* Desktop CSS                                      */
/* ------------------------------------------------ */

/* ------------------------------------------------ */
/* Animations */

/* The text shown on top of the video on the home page */
.fly-in-text {
    font-size: 50px;
    color: white;
    opacity: 0; /* Start hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    animation: flyIn 1s ease-out forwards; 
}

@keyframes flyIn {
    0% {
        opacity: 0;
        transform: translateX(-100%); /* Start off-screen */
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* End at original position */
    }
}
/* ------------------------------------------------ */
/* General element styling */
nav {  
    display: flex;
    justify-content: flex-end; /* Moves items to the right */
    align-items: center; /* Aligns items vertically */
    padding: 15px 20px; /* Adjust padding */
    text-align: right; /* Ensure text aligns right */ 
    font-weight: bold;
}

img {
    width: 100%;
    max-width: 750px;
}

/* ------------------------------------------------ */
/* Hero Section - Placed over the main video element */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents overflow issues */
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full coverage */
    z-index: 1; /* Pushes it behind content */
}

/* Optional Dark Overlay for Better Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Hero Content (Text) */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 3;
    width: 75%;
    cursor: default;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* ------------------------------------------------ */
/* Container to hold paragraphs and other text */
.bio-container {
    padding: px;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}

.bio-container h2 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #FF3C38;    
}

.bio-container p {
    font-size: 18px;
    line-height: 1.5;
    color: white; 
}

/* ------------------------------------------------ */
/* Social Media Section */
.social-media {
    display: flex;
    justify-content: center; /*  horizontally */
    align-items: center; /* Centers vertically */
    width: 100%; 
    padding-bottom: 30px;
    padding-top: 10px;
}

.social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left; /* Center align icons */
    gap: 50px; /* Adds spacing between icons */
    flex-direction: row; /* Stack icons vertically */
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image scales without being cut off */
}

.social-media img {
    width: 40px; /* Resize icons */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.social-media img:hover {
    transform: scale(1.1); /* Slight zoom effect */
    filter: brightness(1.1); /* Lighten on hover */
}

/* ------------------------------------------------ */
/* Video Gallery Container */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; 
    margin: 5%; 
    place-items: center;
}

/* Individual Video Items */
.video-item {
    width: 100%; 
    max-width: 480px; 
    height: auto;
}

.videotitle {
    color:#FFFFFF;
    text-align:center;
}

/* ------------------------------------------------ */
/* Containers for images */
.image-container {
    display: flex;
    padding: 20px;
    text-align: center;
    margin-left: 25%;
    margin-right: 25%;
    width: 100%; 
    height: auto;  
    object-fit: cover; 
    place-items: center;
}

.image-container img{
    scale: 175%;
    margin-top: 75px;
}

.image-header {
    max-width: 100%; 
    height: auto; 
    z-index: 2;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;  
    margin: 5%; 
    place-items: center;
}

.image-gallery img{
    width: 100%;  /* make images fill the grid cell width */
    height: auto; /* keep aspect ratio */
    display: block; /* remove inline spacing below images */
}

/* ------------------------------------------------ */
/* Button styling */
button {   
    background: #FF3C38;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: x-large;
    display: inline-block;
    padding: 10px 20px;
    margin-top: auto; 
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

button:hover {
    transform: scale(1.05);
    transition: transform 330ms ease-in-out;
}

/* ------------------------------------------------ */
/* Mobile Menu Styling - the actual menu that appears when clicking hamburger icon */
/* AND the hamburger icon itself */

.hamburger {
    font-size: 40px;
    cursor: pointer;
    color: #FFFFFF;
    position: absolute;
    z-index: 1000; 
    text-shadow: 3px 3px 5px #ff0000;
    display: block;
}

.hamburger:hover{
    color: #FF3C38;
    cursor: pointer;
}

.mobile-menu{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0F0F0F;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 998;
    visibility: hidden; /* Hide by default */
    opacity: 0.4;
}

.mobile-menu a:hover {
    color: #FF3C38;   
}

/* appears after clicking hamburger icon */
.mobile-menu-active {
    visibility: visible;
    opacity: 0.85;
    background: linear-gradient(45deg, #000000); 
}

/* Center menu items */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.mobile-link{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 15px; 
    transition: all 0.3s;  
}

/* ------------------------------------------------ */
/* Footer styling */
footer {
    padding: 20px 0;
    text-align: center; 
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;  
}

/* copyright notice */
.footer-bottom {
    font-size: 13px;
    padding: 15px;
    font-weight: bold;
    color: white;  
}

.footer-bottom a {
    text-decoration: none;
    color: red;
}

.footer-bottom a:hover {
    color: white;
    transition: ease-in-out 0.3s;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  margin: 2rem auto;        /* centers the form horizontally */
  max-width: 500px;         /* keeps it from stretching too wide */
  width: 100%;
  background: #0d0d0d;      /* black background */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.5); /* purple glow */
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center; /* centers everything */
}


.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #d8b4fe; /* soft purple */
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #4c1d95; /* dark purple border */
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a78bfa; /* lighter purple placeholder */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #9333ea; /* bright purple */
  background: rgba(147, 51, 234, 0.1); /* soft purple tint */
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #6d28d9, #9333ea); /* purple gradient */
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #9333ea, #a855f7);
  transform: scale(1.05);
}



.success-message {
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
}

.error-message {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ------------------------------------------------ */
/* Transcription page styling */
.tLink {
    color:white;
}

.tLink:hover  {
   color: #FF3C38; 
}
/* ------------------------------------------------ */

/* ------------------------------------------------ */
/* Mobile CSS                                       */
/* ------------------------------------------------ */

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    width: 100%;
  }
  
}

@media (max-width: 1350px) {
    header {
        flex-direction: column; /* Stack elements vertically */
    }

    .header-image{
        width: 125%;
        justify-content: center;
        object-fit: contain;
        image-rendering: crisp-edges;
    }

    .image-gallery { 
        display: grid;
        grid-template-columns: repeat(1, 1fr); 
        gap: 10px;  
        margin: 5%; 
    }

    .video-gallery{
        display: grid;
        grid-template-columns: repeat(1, 1fr); 
        gap: 10px;  
        margin: 5%; 
    }
    
}