/* Reset some defaults */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body */
body {
font-family: 'Arial', sans-serif;
background-color: #000; /* Black background */
color: #fff; /* White text for contrast */
line-height: 1.6;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
padding: 20px;
background-color: #222; /* Dark background for navigation */
border-bottom: 2px solid #444; /* Gothic-like border */
}
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin-left: 20px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
font-size: 1.2rem;
}
/* Gothic Font for the Store Name */
h1 {
font-family: 'Creepster', cursive;
color: #ff6f61;
font-size: 3rem;
text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.4);
}
/* Home Section */
.home-section {
height: 100vh;
background: url('images/punk-background.jpg') no-repeat center center/cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
background-color: #000;
}
.hero h2 {
font-size: 3rem;
margin-bottom: 20px;
text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}
.hero p {
font-size: 1.5rem;
margin-bottom: 30px;
}
.shop-now-btn {
background-color: #ff6f61;
color: #fff;
padding: 12px 25px;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
border-radius: 5px;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease;
}
.shop-now-btn:hover {
transform: scale(1.1);
}
/* Products Section */
.products-section {
padding: 40px 20px;
text-align: center;
background-color: #000;
}
.product-gallery {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}
.product-item {
background-color: #444;
padding: 20px;
border-radius: 8px;
width: 30%;
margin: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}
.product-item:hover {
transform: translateY(-5px);
}
.product-item img {
width: 100%;
border-radius: 8px;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.product-item p {
margin-top: 10px;
font-size: 1.2rem;
font-weight: bold;
}
/* About Section */
.about-section {
padding: 40px 20px;
background-color: #000;
text-align: center;
font-size: 1.1rem;
font-style: italic;
color: #ccc;
box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}
/* Contact Section */
.contact-section {
padding: 40px 20px;
background-color: #000;
text-align: center;
}
form {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: #333;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
form input,
form textarea {
width: 100%;
padding: 12px;
margin-bottom: 10px;
border: 1px solid #fff;
background-color: #444;
color: #fff;
font-size: 1rem;
border-radius: 5px;
}
form button {
background-color: #ff6f61;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
font-weight: bold;
font-size: 1.2rem;
border-radius: 5px;
transition: background-color 0.3s ease;
}
form button:hover {
background-color: #e55b4b;
}
/* Footer */
footer {
background-color: #222;
text-align: center;
padding: 20px;
color: #fff;
margin-top: 20px;
font-size: 1rem;
}