@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 80px;
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #545454, #3a3a3a);
    color: #eaeaea;
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #3a3a3a;
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

#header-img {
    height: 50px;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff8c00;
}

#nav-bar {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #f0e6f6;
    text-decoration: none;
    text-shadow: 0 0 5px #ffb347;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: #ffb347;
    text-shadow: 0 0 10px #ff8c00;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 40px 5%;
}


#features {
    max-width: 800px;
    background: #3a3a3a;
    padding: 30px;
    border: 1px solid #ff8c00;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff8c00;
}

#features h1 {
    font-size: 2.5rem;
    color: #ffa500;
    margin-bottom: 20px;
    text-align: center;
}

#features p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

#features ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#features li {
    background: rgba(255, 140, 0, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
}


#video {
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 15px #ff8c00;
    border-radius: 10px;
    overflow: hidden;
}

#video h2 {
    color: #ffa500;
    text-align: center;
    margin-bottom: 20px;
}

#video iframe {
    width: 100%;
    height: 450px;
}


#form {
    max-width: 600px;
    background: #3a3a3a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff8c00;
}

#form h2 {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 20px;
    text-align: center;
}

#form label {
    display: block;
    margin-bottom: 8px;
    color: #f0e6f6;
    font-weight: bold;
}

#form input[type="email"],
#form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ff8c00;
    border-radius: 5px;
    background: #3a3a3a;
    color: #eaeaea;
}

#form input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #ff4500;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#form input[type="submit"]:hover {
    background: #ff6347;
    box-shadow: 0 0 10px #ff6347;
}

@media (max-width: 768px) {
    main {
        padding: 20px 2%;
        gap: 40px;
    }

    #features ul {
        flex-direction: column;
        align-items: center;
    }

    #video iframe {
        height: 250px;
    }
}