/* 1. ASSETS & FONTS */
@font-face {
  font-family: 'Milkyway';
  src: url('./assets/fonts/MilkywayDEMO.ttf');
}

@font-face {
  font-family: 'ThisAppeal';
  src: url('./assets/fonts/ThisAppeal-FreeDemo.ttf');
}

@font-face {
  font-family: 'RetroFloral';
  src: url('assets/fonts/RetroFloral.otf');
}


/* 2. GLOBAL & BODY SETTINGS */
*{
    cursor: none; /* Applied to everything */
}

body{
    background-color: #EA9AB2;
    margin: 0;
    font-family: 'Milkyway';
}

/* 3. ELEMENT STYLES (Base Tags) */
h1{
    font-family: 'Milkyway';
    font-size: 100px;
    text-align: center;
    margin: 50px;
    -webkit-text-stroke: 1.5px white;
}

h2{
    font-family: 'RetroFloral';
    padding: 0px;
    margin-top: 0px;
    margin-bottom: -20px;
    font-size: 50px;
}

p{
    font-family: 'Milkyway';
    color: white;
}

button{
    width: 350px;
    height: 350px;
    background: #E27396;
    color: #FFDBE5;
    font-size: 8em;
    font-family: 'ThisAppeal';
}

img{
    width: 250px;
    height: 250px;
}


/* 4. LAYOUT & CONTAINERS */
.parent, .image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    flex-wrap: wrap;
}

.image-row {
    padding: 50px;
    gap: 20px; /* Specific override for row gap */
}

.card{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-content: flex-start;
    
    margin-left: 10vw;
    margin-right: 10vw;
    margin-bottom: 5vw;
    padding: 1em;
    gap: 3em;
}

/* 5. POSITIONING & UTILITIES */
.bow{
    width: 12vw;
    height: auto;
    position: absolute;
    top: 3vh;

}

.top-left-bow{
    left: 5vw;
    rotate: -15deg;
}

.top-right-bow{
    right: 5vw;
    rotate: 15deg;
}

.center{
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.center-bottom{
    left: 50%;
    top: 90%;
    position: absolute;
    transform: translateX(-50%);
}

.button-small{
    width: 150px;
    height: 50px;
    font-size: 30px;
    font-family: 'ThisAppeal';
    position: fixed;
}

.openWebsite{
    width: 200px;
    height: 75px; 

    font-size: 30px;
    font-family: 'Milkyway';
    border: 2px solid #FFDBE5;
}

.green{
    background-color: #6D9F71;
}

.pink{
    background-color: #E27396;
}

.green-button{
    background: #337357;
    color: #84c189;
    border: 2px solid #204937;
}

.green-button:hover{
    color: #337357;
    background: #84c189;
    border: 2px solid #204937;
}

.pink-button{
    background: #E27396;
    color: #FFDBE5;
    border: 2px solid #9b4e66;
}

.pink-button:hover{
    color: #E27396;
    background: #FFDBE5;
    border: 2px solid #a3526c;
}

.top-left-button{
    left: 1%;
    top: 1%;
    z-index: 1;
    border: 2px solid #FFDBE5;
}

.top-right-button{
    right: 1%;
    top: 1%;
    z-index: 1;
    border: 2px solid #337357;
}

.bg-cyan{
    background: #2ed1ab;
}

.bg-cyan:hover{
    background: #337357;
    color: #2ed1ab;
}

.text-side{
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px;
    max-width: 70%;
}

.img-side{
    justify-content: flex-end;
    height:auto;
    width: auto;
}

.below{
    font-family: 'RetroFloral';
    margin-top: 25px;
}

.ribbion{
    position: fixed;
    height: 75vh;
    width: 5.5vw;
}

.left-ribbion{
    top: 10vh;
    left: 2.3vw;
}

.right-ribbion{
    top: 10vh;
    right: 2.3vw;
}

.infoText{
    font-size: 30px;
    margin-left: 5vw;
    margin-right: 5vw;
    font-family: 'RetroFloral';
}

.lulu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5vw;
    gap: 2vw
}

.luluImg{
    height: 500px;
    width: auto;
}

/* 6. INTERACTION & ANIMATION */
#cursor-follower{
  position: fixed;
  width: 70px; 
  height: auto;
  pointer-events: none;
  transform: translate(-25%,-28%);
  z-index: 9999;
}

.hover:hover{
    color: rgb(244, 103, 127);
}

button:hover{
    color: #E27396;
    background: #FFDBE5;
    border: 0.1em solid #E27396;
}

.squishy{
    transition: transform 0.5s;
}

.squishy:hover{
    transform: scaleY(0.65);
}

.large{
    transition: transform ease 0.3s;
}

.large:hover{
    transform: scale(1.4);
}
