/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #069460;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}

.subtitle {
    font-style: italic;
    font-size: 20px;
    margin: 20px 0;
}

/* Layout components */
.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.gif-image {
    width: 80px;
    height: auto;
    margin: 10px 0;
}

.text-content {
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.footer-gif {
    height: 60px;
    margin: 10px;
}

/* Custom cursor */
#custom-cursor {
    font-size: 24px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    user-select: none;
}

/* Leaves container */
#leaves-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.leaf {
    position: absolute;
    width: 20px;
    max-width: 5vw;
    height: auto;
    opacity: 0.7;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    animation: ripple-animation 2s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
  }
  
  @keyframes ripple-animation {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    20% {
      transform: scale(0.2);
      opacity: 0.8;
    }
    40% {
      transform: scale(0.3);
      opacity: 0.6;
    }
    60% {
      transform: scale(0.4);
      opacity: 0.4;
    }
    80% {
      transform: scale(0.5);
      opacity: 0.2;
    }
    100% {
      transform: scale(0.6);
      opacity: 0;
    }
  }
  
  

/* Media query for larger screens */
@media screen and (min-width: 768px) {
    body {
        font-size: 24px;
        padding: 50px;
    }

    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 48px;
    }

    p {
        font-size: 28px;
    }

    .subtitle {
        font-size: 32px;
    }

    .flex-container {
        flex-direction: row;
        justify-content: center;
    }

    .gif-image {
        width: 100px;
        margin: 0 20px;
    }

    .text-content {
        text-align: left;
    }

    .footer-gif {
        height: 100px;
    }
}
