/* Styles for SplinterSales Website */

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

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://weblium.com/blog/wp-content/uploads/2019/09/photo-1533135091724-62cc5402aa20-1344x734.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

/* Navbar Styling */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    color: red;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: red;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1593706427020-46ec1ac76792?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzNjYxOXwwfDF8c2VhY2h8MXx8cmFwcGVyfGVufDB8fHx8&ixlib=rb-1.2.1&q=80&w=1080') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

#hero h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
}

.btn {
    display: inline-block;
    background: red;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: darkred;
}

/* Sections */
section {
    padding: 50px;
}

#purchase {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 40px;
}

#purchase button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
    transition: 0.3s;
    border-radius: 5px;
}

#purchase button:hover {
    background-color: darkred;
}

/* Social Media Icons */
.socials {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
}

.socials a {
    color: white;
    margin: 10px 0;
    font-size: 25px;
    text-decoration: none;
    transition: color 0.3s;
}

.socials a:hover {
    color: red;
}

footer {
    background-color: #111;
    padding: 20px;
}
