* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1920&q=80'); /* Nature Background */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay to make text readable */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    z-index: 10;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo span {
    color: #4CAF50; /* Nature Green */
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: 0.3s;
}

.live-btn {
    background: #ff4b2b;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600 !important;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.content {
    margin: auto;
    text-align: center;
    color: #fff;
    z-index: 10;
    padding: 0 20px;
}

.content h1 {
    font-size: 80px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta {
    text-decoration: none;
    background: #4CAF50;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.cta:hover {
    background: #45a049;
    letter-spacing: 1px;
}