/* Full-screen hero with background image */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url('../images/background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
/* Optional dark overlay for contrast */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
  

/* Centered container */
.content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}
  
/* Logo */
.logo {
    width: 240px;
    margin-bottom: 20px;
}
  
/* Title */
.title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
  
/* Buttons */
.buttons .btn {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    background: #FF7043;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.2s;
}
  
.buttons .btn:hover {
    background: #F4511E;
}