/* 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: 'Monaco', sans-serif;
    background: black;
}

a{
    transition: all 0.3s;
    color: #e63946;
    text-decoration: none;
}

a:hover{
    color: rgb(157, 0, 0);

}

.divider {
    border: 0;
    height: 2px;
    background: rgb(157, 0, 0);
    margin: 2rem 0;
    opacity: 70%;
  }
  
.divider:hover{
    transition: all 0.3s;
  }

/* ------------------------------------------------ */
/* 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 */
/* Container */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  /* Background video */
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
  }
  
  /* Dark overlay for readability */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust for brightness */
    z-index: -1;
  }
  
  /* Content */
  .hero-content {
    max-width: 700px;
    padding: 2rem;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.85;
  }
  
  .hero-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    background: #FF3C38;
    color: white;
    text-decoration: none;
    transition: 0.25s ease-in-out;
  }
  
  .hero-btn:hover {
    background-color: rgb(157, 0, 0)
  }
  

/* ------------------------------------------------ */
/* Container to hold paragraphs and other text */
.bio-container {
    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.2); /* 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: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s;
    display: inline-block;
    padding: 10px 20px;
    margin-top: auto; 
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    font-family: "Monaco"
}

button:hover {
    transform: scale(1.05);
    transition: all 0.5s;
    background-color: rgb(157, 0, 0);
}

/* ------------------------------------------------ */
/* 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;
    transition: all 0.3s;
}

.hamburger:hover{
    color: #e63946;
    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.5;
}

.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: 15px;
    font-weight: bold;
    color: white;  
}

.footer-bottom a {
    text-decoration: none;
    color: #e63946;
    display: block;
}

.footer-bottom a:hover {
    color: rgb(157, 0, 0);
    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;      
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center; /* centers everything */
}


.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: e63946; 
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #b00000;
  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: #f28b8b; 
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #e11d1d; /* bright red */
    background: rgba(225, 29, 29, 0.1); /* soft red tint */

}

.contact-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
background: linear-gradient(135deg, #e11d1d, #f87171); /* deep red → soft red */
  transform: scale(1.05);
}

.status_message{
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;        
}

.success-message {
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
}

.error-message {
  color: #e63946;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ------------------------------------------------ */
/* 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%; 
    }
    
}