

body {
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor */
}
body {
 
}

/* Base particle style */
.particle {
  position: fixed;
  width: 10px;
  height: 10px;
  background: rgba(205, 8, 149, 0.8); /* pink glow */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fadeOut 0.6s linear forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
}


/* Microinteraction: Cursor grows on hoverable items */
a:hover ~ .cursor,
button:hover ~ .cursor,
h1:hover ~ .cursor {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 79, 163, 0.2);
}


/* Put this on every CSS sheet! */
img, video {
    max-width: 100%;
    height:auto;
}

header{}

nav{
     background: transparent;
    padding: 1rem 0;   /* adds breathing room above and below */
    margin: 0;
    display: flex;
    align-items: center; /* vertically centers logo + links */
}
a {
    /* background-color: chartreuse; */
    text-decoration: none;
    color:rgb(119, 117, 118);
}

.logo{
    margin-top: 10px;  /* adjust as needed */
    margin-left: 10px;
    width: 60px;
    height: auto;
}

.menu-item{
    margin:30px;
    font-size:18px;
    color:rgb(19, 14, 19);
}

.menu-item:hover{
    color:rgb(189, 125, 183);
    transition:0.3s;
}

main{
   
}

footer{
}

#homepage-content{
  position: relative;
  height: 100vh;
}

#secondpage-content {
  position: relative;   /* so absolute children can anchor to it */;
  padding-top: 10rem; /* moves the image up under the title */
}

.page-title{
     margin: 0;
  font-family: 'Climate Crisis', sans-serif !important;
  font-size: 5.5rem;
  text-align: right;
  padding: 0;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, #c581a7, #c71d8e);
    -webkit-background-clip: text;
    color: transparent;
    position: absolute;
  bottom: 5rem;   /* adjust upward/downward */
  right: 5rem;    /* adjust inward/outward */
  
}

.page-title-2{
    margin: 0;
  font-family: 'Climate Crisis', sans-serif !important;
  font-size: 4rem;
  text-align: left;
  padding: 0;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, #c581a7, #c71d8e);
    -webkit-background-clip: text;
    color: transparent;
    position: absolute;
  top: 3rem;   /* adjust upward/downward */
  left: 3rem;    /* adjust inward/outward */
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* makes the video cover the whole screen */
  z-index: -1;             /* keeps the video behind everything */
}





/* To put text on top of an image, you need to have the image and text inside a container (thumbnail) and use position:relative on the container */
.thumbnail{
    width:280px;
    height:auto;
    border:5px solid black;
    position:relative;
}

/* position the text on top with absolute */
.overlay-text{
    position:absolute;
    top:50px;
    left:50px;
    color:rgb(230, 230, 227);
    opacity:0;
}

.thumbnail:hover h3{
    opacity:1;
    top:40px;
    transition:0.3s ease-in;
}

.thumbail:hover{
    filter:grayscale();
    transition:0.3s ease-in;
}
    
/* BACKGROUND VIDEO */
.bg-vid{
    position:absolute;
    top:0;
    left:0;
    z-index: 0;
}

.video-tagline{
    position:relative;
    z-index: 2;
    font-size:10em;
    font-family: "Racing Sans One", sans-serif;
    color:black;

}

.vid-overlay{
    width:100px;
    height:100wh;
    background-color: aliceblue;
    position:absolute;
    top:0;
    left:0;
    background-image:linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,1));
}

.slide-in {
  opacity: 0;
  transform: translateY(40px);
  animation: slideIn 0.7s ease-out forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.image-wrapper {
    width: fit-content;           /* shrink to fit the image/text */
    margin: 1rem 0 0 5rem; /* ONLY a tiny space under the title */
    text-align: left;             /* keeps content left-aligned */
}
.image-wrapper img {
    max-width: 200px; /* adjust as needed */
    display: block;
}
.image-wrapper p {
    color: white;   /* ← change this to any color you want */
    font-size: 1rem;
    margin-top: 8px;
}

.image-wrapper-2 {
  width: fit-content;           /* shrink to fit the image/text */
    margin: 1rem 0 0; /* ONLY a tiny space under the title */
    text-align: left;  
}
.image-wrapper img.concept-board {
    max-width: 400px; /* adjust as needed */
    display: block;
}
.image-wrapper-2 p {
    color: white;   /* ← change this to any color you want */
    font-size: 1rem;
    margin-top: 8px;
}
    .image-row {
    display: flex;
    gap: 3rem;          /* space BETWEEN the two images */
    margin-left: 5rem;  /* matches the margin of your first image */
    padding-right: 3rem;  /* <— ADD THIS */
    padding-left: 3rem;
    align-items: flex-start;
}
    .project-video {
    width: 500px;     /* match image size or adjust */
    margin-top: 1rem; /* space between caption and video */
    border-radius: 6px; /* optional */
    display: block;
}
.video-caption {
    color: white;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: left;   /* match your other text */
    max-width: 300px;   /* match your image/video width */
}
.top-video-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.top-video-inner {
    text-align: center;   /* centers caption under the video */
    max-width: 700px;   /* prevents super-wide text */
    margin: 0 auto;     /* keeps it centered horizontally */
}

.top-video-inner .project-video {
    width: 400px; /* or match your other videos */
    height: auto;
}

.centered-text {
    color: #ffb3e1;      /* your pink shade */
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}
.project-video {
    display: block;
    margin: 0 auto;           /* horizontally centers the video */
    width: 600px;             /* or whatever width you want */
}
.stacked-img {
    max-width: 500px;    /* matches your existing images */
    display: block;
    margin-top: 1.5rem;  /* nice spacing between items */
}
.concept-board {
    display: block;
}

