/* General Styling */
body {
    background: #000;
    color: #fff;
    font-family: 'Righteous', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
}

/* Navbar */
nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

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

/* Hero Section */
header {
    padding: 100px 20px;
    margin-top: 80px;
}

.logo {
    width: 300px;
}

.graffiti-text {
    font-size: 3.5rem;
    text-shadow: 4px 4px 0 #ff00ff, 8px 8px 0 #00ff00, 12px 12px 0 #0000ff;
}

/* Improved Button Styling */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff00ff, #39b54a);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 50px; /* Rounded for a pill shape */
    box-shadow: 0 0 10px rgba(255, 0, 153, 0.7);
    transition: all 0.3s ease-in-out;
}

/* Button Hover Effect */
.btn:hover {
    background: linear-gradient(45deg, #0000ff, #ff00ff);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

/* Shop Section */
.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product {
    background: #111;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #ff00ff;
}

.product img {
    width: 100%;
    border-radius: 5px;
}

/* About Section */
#about {
    background: #222;
    padding: 50px;
}

/* Footer */
footer {
    background: #111;
    padding: 20px;
}

.socials a {
    color: #ffcc00;
    text-decoration: none;
}