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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #ff8c00;
}

/* Full Screen Section */
.section {
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #000;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/covfefe-logo.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-size: 4rem;
    color: #ff8c00;
    z-index: 1;
}

/* Buy Buttons */
.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.buy-btn {
    padding: 15px 30px;
    background-color: #ff8c00;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.buy-btn:hover {
    background-color: #ff6000;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}
