@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Petit+Formal+Script&display=swap');

html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100vw; /* Ensures content doesn't extend past screen */
}


p, h1, h2, h3, h4, h5, h6 {
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out; /* Transition for transform */
  
}

/* Hover Effect for Paragraphs */
p:hover {
  transform: scale(1.10); /* Enlarges text by 10% on hover */
  transition: transform 0.3s ease-in-out; /* Smooth scaling transition */
}

h1:hover {
  transform: scale(1.10); /* Enlarges text by 10% on hover */
  transition: transform 0.5s ease-in-out; /* Smooth scaling transition */
  
}
h2:hover {
  transform: scale(1.10); /* Enlarges text by 10% on hover */
  transition: transform 0.5s ease-in-out; /* Smooth scaling transition */
  filter: brightness(.8);
}

h3:hover {
  transform: scale(1.10); /* Enlarges text by 10% on hover */
  transition: transform 0.5s ease-in-out; /* Smooth scaling transition */
  filter: brightness(.8);
}

/* Base style for images */
img {
    transition: filter 0.5s ease-in-out; /* Smooth transition for both scale and filter */
}

/* Hover effect for images */
img:hover {
     /* Enlarges image by 10% */
    filter: brightness(.8); /* Darkens the image */
}

/* SCROLL GIF */
.love-hearts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: auto;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 1;
}


header {
    position: sticky;  /* Makes the header sticky */
    top: 0;            /* Ensures it sticks to the top */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    background-color: white;
    z-index: 1000;
    opacity: 80%;
    /* Keeps it on top of other content */
}



#home {
    width: 40px;
    display: block; /* Ensures proper alignment */
    margin-top: -12px;
    right: 0;
    /* Centers the image */
    transition: transform 0.4s ease-in-out; /* Smooth transition */
    cursor: pointer; /* Indicates it's clickable */
    transform-origin: center; /* Ensures rotation happens from the center */
    position: absolute;
    
    
}

#home:hover {
    transform: rotate(-90deg); /* Rotates 90 degrees left */
}

#logo {
    padding-top: 20px;
    width: 80px;
    padding-left: 40px;
}
/* General body settings */
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
}

/* Video container (hidden on mobile) */
#video-background {
    display: none; /* Hide by default */
}

/* Show video on desktop only (1024px and up) */
@media (min-width: 1024px) {
    #video-background {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -3000; /* Send to background */
        overflow: hidden;
    }

    /* Make sure video covers full screen */
    #video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        object-fit: cover; /* Ensures the video fills the screen */
        transform: translate(-50%, -50%);
        pointer-events: none; /* Prevent interaction */
    }
}


.hearts {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: white;
    font-size: 100%;
    z-index: -1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section1, #section2, #section4, #section7 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column; 
    font-size: 100%;
}

#section3, #section8 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: #FF97B9;
    display: flex;
    flex-direction: column; 
    font-size: 100%;
    padding-top: 50px;
}

#section5, #section9 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column; 
    font-size: 100%;
}

#section6 {
    position: relative;
    width: 100vw;
    min-height: 300vh;
    background-color: white;
    font-size: 100%;
    z-index: -1000;
    margin-bottom: 417px;
}




.img1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bigCenterText {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.bigCenterText h1 {
    font-size: 16vh;
    padding-top: 20px;
    margin: 0 auto;
    font-weight: 900;
}

.bigCenterText h2 {
    font-size: 13vh;
    margin: 0 auto;
    font-weight: 900;
    line-height: 0.5;
    
}


.img2 img {
    display: block;
    margin: 0 auto;
    padding-top: 100px;
    max-width: 80%;
}

.img3 img {
    display: block;
    margin-top: -60%;
    margin-left: 1.5rem;
    width: 80%;
}

#heartAbout {
    position: relative;
    padding-left: 20%;
    margin-bottom: -78px;
    padding-top: 100px;
    rotate: -10deg;
    
}

.miniHeader {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    padding-left: 30%;
    margin-bottom: -20px;
    margin-top: 40px;
     
    
}

.about {
    font-family: 'Montserrat', sans-serif;
    padding-left: 30%;
    font-weight: 400;
    font-size: 19px;
    text-align: left;
    padding-top: 5px;
    width: 40%;
    margin-bottom: 200px;
}

#hearts {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    
}



/* Title Styling for "WE MET IN" */
.thinTitle h3 {
    font-family: 'Montserrat', sans-serif; /* Montserrat Thin font */
    font-weight: 200; /* Montserrat Thin weight */
    font-size: 4em;
    text-align: center; /* Center justify */
    padding-top: 105px;
    margin: 0;
}

/* Styling for the year text with big centered numbers */

.year h1 {
    font-size: 13rem; /* Big font size for year */
    line-height: 150px; /* -40px line height, effectively 40px space between lines */
    transform: translate(-69%, -5%); /* Adjust for true centering */
    padding-top: 48px;
}


.meet-story p {
    width: 10rem;
    font-family: 'Montserrat', sans-serif;
    padding-left: 47%;
    font-weight: 400;
    font-size: 30px;
    text-align: left; 
    margin-top: -591px;
}
/* General paragraph styling within meet-story and first-move */

.img4 {
    margin-top: 300px;
    transform: translate(-12%);
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    
    
}


.together {
    display: flex;
    justify-content: center;
    margin-top: 431px;
    margin-left: -3rem;
}

.seconds, .hours, .days {
    display: flex;
    justify-content: center; /* Space items evenly with space between */
    margin-right: -228px; /* Optional: Add spacing from the right edge */
}

.seconds > *, .hours > *, .days > * {
    margin-bottom: 111px; /* Adds vertical space between items */
    margin-top: -59px;
}

.years {
    display: flex;
    justify-content: center;
    margin-top: -345px;
    margin-left: 2%;
}

.begin {


    display: flex;
    flex-direction: column; 
    justify-content: right;
    transform: translate(58%);
    margin-top: 85px;
    position: relative; /* Add this to make it the reference for absolute positioning */
}

.heartbegin, .heartbegin2 {
    position: absolute; /* Position absolute inside .begin */

}

.heartbegin {
    bottom: 0; /* Stick to bottom */
    
    
}

.heartbegin2 {
    top: 0; /* Stick to top */
    padding-left: 62px;
}


/* Styling for the miniHeader */
.miniHeader2 h4 {
    font-family: "Petit Formal Script";
    font-size: 50px;
    font-weight: bold;
    margin-top: 30px;
    margin-left: 86px;
    color: #FF97B9;
}

.first-move p {
    width: 17rem;
    font-family: 'Montserrat', sans-serif;
    margin-left: 86px;
    font-weight: 400;
    font-size: 25px;
    text-align: left; 
    margin-top: -50px;
}

.img5 {
    display: flex;
    justify-content: center;
    padding-bottom: 150px;
}

/* Position the rose image absolutely to the top right */
.rose1 img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    transform: scaleX(-1);
    margin-right: -50px;
}

/* Italics title styling */
.italics-title h5 {
    text-align: left;
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    padding-left: 21px;
    padding-top: 30px;
    width: 70%;
}

/* White big text, centered and aligned to the left margin */
.whitebig h1{
    color: white;
    text-align: left;
    position: absolute;
    left: 0;
    line-height: 5.5rem;
    padding-left: 17px;
    margin-top: -36px;
}

/* Distance text with transparent fill and black stroke */
.distance p {
    font-size: 14.5vh;
    color: #FF97B9; /* Fill color */
    text-shadow: 
        -3px -3px 0 white,  
         3px -3px 0 white,  
        -3px  3px 0 white,  
         3px  3px 0 white,  
        -7px  .1px 0 white,  
         3px  0.1px 0 white,  
         0.1px -3px 0 white,  
         0.1px  3px 0 white;
    

    margin-bottom: -302px;
    margin-top: 139px;
}

.distance {
    padding-top: 60%;
    
}


/* Bigstroke text with transparent fill and white stroke */
/*
.bigstroke {
    font-size: 17vw;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 10px white;
}
*/

/* Blackstroke text with Montserrat Black font and -10 letter spacing */
/*
.blackstroke {
    font-family: 'Montserrat Black', sans-serif;
    letter-spacing: -10px;
}
*/

/* White big 2 text, centered and aligned to the right margin */
.whitebig2 h1 {
    color: white;
    text-align: left;
    position: absolute;
    right: 0;
    line-height: 5.5rem;
    padding-right: 17px;
    margin-top: 300px;
    
}

.whitebig2 h2 {
  margin-top: 522px;
  color: white;
  font-size: 4rem;
  text-align: left;
  position: absolute;
  right: 0;
  padding-right: 17px;
  
  
}

/* Whitescript with Petit Formal Script font */
.whitescript h2 {
    font-family: 'Petit Formal Script', cursive;
    color: #C4587B;
    font-size: 4.5rem;
    padding-top: 546px;
    text-align: left;
    position: absolute;
    right: 0;
    padding-right: 36px;
    
}

.time-week p{
     font-size: 300px;
    color: #FF97B9; /* Fill color */
    text-shadow: 
        -10px -10px 0 white,  
         10px -10px 0 white,  
        -10px  10px 0 white,  
         10px  10px 0 white,  
        -17px  2.7px 0 white,  
         10px  6.1px 0 white,  
         6.5px -10px 0 white,  
         7.7px  10px 0 white;
    margin: 0;
    padding-top: 600px;
    padding-bottom: 24rem;
}

/* Red text with specific color */
.redtext h1 {
    color: #DF1B1B;
    line-height: 91px;
    height: auto;
    font-size: 7rem;
    padding-bottom: 47px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 10px;
    
    
}

.rose2 img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    margin-left: -50px;
    margin-bottom: -43px;
}

#section4 p {
    font-family: 'Montserrat', sans-serif;
    padding-left: 22%;
    font-weight: 400;
    font-size: 19px;
    text-align: left;
    padding-top: 150px;
    width: 60%;
    margin-bottom: 200px;
    
}

.img6 img {
    width: 80%;
    padding-left: 10%;
   
    
}

.caption {
    margin-top: -134px;
    margin-left: -11%;
    padding-bottom: 300px;
}





/*SECTION5*/
#section5 {
    color: white;    
}

.writtenstars img {
    width: 450px;
    position: absolute;
    top: 0;
    left: 50%; /* Move to center */
    transform: translateX(-50%); /* Shift back by half its width to center it */
    margin-top: -22rem;
}

/* Center the GIF and set its width */
.signsgif {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 355px;
     margin-bottom: 37px;
    z-index: 1;
}

.signsgif img {
    width: 700px;
    display: block;
}

.pinktitle h3 {
    width: 65%;
    margin-left: 20%;
    color: #FF97B9;
    font-weight: 300;
    font-size: 2rem;
    
}

.signs {
    width: 65%;
    margin-left: 20%;
    padding-bottom: 500px;
    
}


.twocolumn {
    position: absolute;
    bottom: 100px; /* Places it above the bottom edge */
    left: 50%; /* Moves it to the center */
    transform: translateX(-50%);
    padding-bottom: 20px;/* Shifts it back by half its width to center it */
}

/* Individual column styling */
.column {
    padding: 10px;
}

/* Title styling */
.twocolumn h3 {
    font-size: 2rem;
    text-align: center;
}

/* List styling */
.twocolumn ul {
    list-style-type: georgian;
    padding: 0;
    font-size: 1.2rem;
    text-align: center;
}


/* Individual column styling */
.column {
   transform: translateX(-60%);

    
}

.column2 {
    transform: translateX(60%);
    margin-top: -257px;
   

}

/* Title styling */
.twocolumn h3 {
    font-size: 1.5rem;
    color: #FF97B9;
        
}
/* List styling */
.twocolumn ul {
    list-style-type: georgian;
    font-size: 1.2rem;
   
}





/*SECTION6*/
.wordtitle img {
    width: 90%;
    margin-left: 5%;
   
}
.cherub1, .cherub2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.cherub1 {
    top: 0;
    margin-top: 333px;
    margin-right: -103px;
    right: 0;
}
.cherub2 img {
    width: 600px;
    bottom: 0;
    margin-top: 221%;
    transform: translateX(6%) scale(-1, -1);
}
.bigCenterText {
    position: relative;
}

.bigCenterText p {
     font-size: 5rem;
}

.word1 {
    margin-top: 100px;
    position: absolute;
    right: 0;
    margin-right: 34px;
}
.word2 p {
   font-size: 3.5rem;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   line-height: 2.5rem;
   margin-top: 9px;   
}
.word3 {
    margin-top: -40px;
    margin-left: -66px;

   
}
.eye img {
  margin-top: 269px; 
  margin-left: 5%;
  width: 86%;
  
}
.hand img {
  margin-top: 248px; 
  margin-left: 12%;
  width: 107%;
  
}

/*img7*/
#img7 img {
    width: 90%;
}

 #img7 { 
     display: flex;
    justify-content: center;
     align-items: center;
     padding-left: 3%;
     padding-bottom: 200px;
}

/*SECTION 7*/

#section7 h5 {
    margin-top: 135%;
    position: absolute;
    top: 0;
    
    
}
.music img {
    width: 150%;
    margin-top: -6%;
    margin-left: -66px;
}

.thissong {
    margin-top: 192%;
    position: absolute;

}

.thissong img {
   width: 95%; 
   margin-left: 14px;
   margin-top: 0;
}

.sparkleheartgif img {
    width: 110%;
    margin-left: -40px;
    padding-top: 286px;
}

.spotify-embed {
    margin-top: -69%;
    width: 80%;
    margin-left: 10%; 
    z-index: 10;
}

#songtitle, #songartist {
    margin-left: 50px;
}

#songtitle {
    margin-top: 41%;
    font-weight: 200;
    font-size: 3.1rem;
    line-height: 2.5rem;
}

#songartist {
    font-weight: 653;
    margin-top: 10px;
    margin-left: 54px;    
}
#dance {
    position: relative; /* or absolute/fixed */
    z-index: 10; /* Higher number ensures it stays on top */
}

#dance img {
    width: 80%;
    margin-left: 9%;
    margin-top: 113px;
    margin-bottom: -71px;
    z-index: 10;
        
}

/*section8*/



#section8 h3 {
    font-weight: 867;
    line-height: 5rem;
}

.bigstroke1, .bigstroke2 {
    width: 70%;
    max-width: 900px; /* Prevents stretching on large screens */
    color: white;
    position: relative;
}

.bigstroke1 h3, .bigstroke2 h3 {
    font-size: clamp(4rem, 16vw, 6rem); /* Responsive but controlled size */
    text-transform: uppercase;
}

.bigstroke1 {
    text-align: left;
    color: #e15c88;
    margin-top: 256px;
}

.bigstroke2 {
    text-align: right;
    margin-top: -111px;
}

.trips {
    text-align: center;
    font-size: clamp(16rem, 10vw, 12rem); /* Keeps it readable but large */
    font-weight: 100;
    color: white;
    position: relative;
    margin-top: -249px;
    margin-bottom: -650px;
}

.rose3 img {
    margin-bottom: -147%;
    position: absolute;
    
    
}

.bigCenterText h6 {
    font-size: 16vh;
    padding-top: 182px;
    margin: 0 auto;
    font-weight: 900;
    padding-right: 450px;
    text-align: left;
    margin-bottom: -63px;
    line-height: .9;
}

.white {
    position: relative;
    background-color: white;
    width: 100vw;
    padding-bottom: 184px;
}

.wav {
    position: absolute;
    bottom: 0;

}

.wav img {
    width: 120%;
    margin-bottom: -12px;
}



/*SECTION 9*/

/* Q&A Blocks */
.pinkQ, .pinkA {
    width: 100%;
    max-width: 900px;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.pinkQ {
     color: #FF97B9;
}

.pinkQ h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: -20px;
}

.pinkQ h2 {
    font-size: 1.75rem;
    width: 60%;
    font-weight: 500;
}

.pinkA {
    position: relative;
    width: 50%;
    transform: translateX(30%);
       
}

.pinkA p {
    
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    
}

.pinkA h1 {
    color: #FF97B9; 
    font-size: 7rem;
    margin: -100px;
}

.pinkA h2 {
    color: #FF97B9;
     font-size: 7rem;
     margin-top: -30px;
    margin-left: 300px;
}




.love-languages {
    max-width: 80%;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: white;
    margin-left: 13%;
    margin-top: -50px;
  
}
.loud img {
    position: absolute;

}
.pinkrose {
    margin-bottom: 200px;
}
.pinkrose img{
    position: absolute;
    right: 0;
    width: 75%;
    margin-top: -200px;
   
}

/* Love Language Styling */
.whitestroke {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
    z-index: 10;
}

.whitestroke h1, .whitestroke h2 {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    
    color: black; /* Main text color */
    text-shadow: 
        -2px -2px 0 white,  
         2px -2px 0 white,  
        -2px  2px 0 white,  
         2px  2px 0 white,  
        -9px -3px 0 white,  
         3px -3px 0 white,  
        -3px  3px 0 white,  
         3px  3px 0 white; /* Outer white stroke effect */
}


.whitestroke h3 {
    position: absolute;
    right: 0;
    font-size: 3rem;
    rotate: 90deg;
    margin-top: 50%;
    color: white;
    
}

/* Footer */
.colophon p {
    font-size: 1rem;
    text-align: center;
    margin: 4rem 0;
}

.logo2 img {
    max-width: 200px;
    margin-top: 2rem;
}

.bye {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bye img {
    width: 60%;
    
}

.colophon {
    padding-top: 500px;
}

.colophon p {
    width: 30%;
    text-align: left;
    font-size: 10pt;
    color: lightslategray;
    margin-left: 50px;
    position: absolute;
    bottom: 0;
    
}


/*
MEDIA QUERY 
*/
@media (min-width: 1024px) {
    #section1, #section2, #section3, #section4, #section5, #section7, #section8, #section9, .white  {
        width: 60vw;
        margin: 0 auto;
    }
    
    header {
        width: 60vw;
        margin: 0 auto;
    }
    
    .hearts
    {
    width: 60vw;
    margin: 0 auto;  
    }
    
    #section6 {
        width: 60vw;
        margin: 0 auto;
    }
    
    .img4 {
     transform: translate(10%, 0%);
    }
    
    .img5 img {
    position: absolute;
    right: 0;
    margin-top: -228px;
    margin-right: 10%;
    width: 15rem;
    }
    
    .begin {
        margin-bottom: -337px;
    }
    
    .distance p{
        font-size: 7rem;
        line-height: 96px;
    }
    

    .writtenstars img {
        width: 550px;
    }
    
    

}
