
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('background.pn.jpg') no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: black;
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 11, 11, 0.6);
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00acee;
}


.hero {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px; 
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.hero h2 {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}


.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.watch {
    background: transparent;
    border: 2px solid rgb(252, 251, 251);
    color: white;
}

.follow {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn:hover {
    background: black;
    color: white;
}
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: #cccccc; /* Soft grey for clean look */
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline;
}
