


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    background: url('jolagreen.jpg') center center/cover no-repeat;

    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
  
  .intro-background {
    height: 100%;
    width: 100%;
    background: linear-gradient(-45deg, #000000, #1e1e1e, #434343, #000000);
    background-size: 400% 400%;
    animation: gradientFlow 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../photos/corteiz1.jpg') center center/cover no-repeat;


  }
  
  .intro-content {
    text-align: center;
    color: white;
    animation: fadeIn 2s ease;
  }
  
  .intro-title {
    font-family: 'Dancing Script';

    font-size: 3.5em;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: slideUp 1s ease forwards;
  }
  
  .intro-subtitle {
    font-family: 'Oswald';
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
  }
  
  .enter-button {
    display: inline-block;
    padding: 14px 26px;
    background-color: white;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
    font-family: 'Oswald';
  }
  
  .enter-button:hover {
    background-color: #ddd;
    transform: scale(1.05);
  }
  
  /* ANIMATIONS */
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  