@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1.5;
    
    
}

.hero-wrapper {
    background: #000 url('media/background_grid.png') center center / cover no-repeat;
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 2rem;
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    
    

}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 2;
}

.hero {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    text-align: center;
    font-weight: 700;
}


.hero p {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-top: 1rem;
    
}


.hero img {
    height: 150px;
    width: auto;

}

@keyframes tumbleweed {
  0% {
    transform: translateX(-200px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(120vw) rotate(1080deg);
    opacity: 0;
  }
}

.tumbleweed {
  animation: tumbleweed 25s linear infinite;
  position: absolute;
  top: -10vw;
  left: -25vw;
  height: 100px;
  width: auto;
  z-index: 2;
  pointer-events: none; 
}


.temp {
    margin-top: 3rem;
}

.status {
    text-align: center;
    font-size: 2.5rem;
}

p{
    font-size: 1.5rem;
}



.contact {
    margin-top: 3rem;
    text-align: center;
}


.contact-button {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background-color: #12badc;
    color: #000;
    border-color: #000;
}




@media (max-width: 768px) {
    .hero-wrapper {
        padding: 1.5rem;
        height: auto;
    }

    .hero img {
        height: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .status {
        font-size: 1.6rem;
        margin: 1.5rem 0 0.5rem;
    }

    .temp p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .tumbleweed {
        height: 60px;
        top: -20px;
        left: -100px;
        animation-duration: 18s;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        margin-top: 0.7rem;
    }

    .status {
        font-size: 1.4rem;
       
    }
    .temp {
        margin-top: 2rem;
    }

    .temp p, .hero p {
        font-size: 0.95rem;
    }
    .tumbleweed {
  top: -25vw;

}
    .hero p {
        font-size: 1.1rem;
        padding: 0 0.7rem;
    }
    .hero-wrapper::after {
    height: 100px;
}
.contact {
    margin-top: 2rem;
}
}
