/*
 Theme Name: Astra Child
 Template: astra
 Version: 1.0
 Description: Motyw potomny dla Bazgranie Nocą - Sylwester Tarawski
 Author: Grok
*/
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e6e6e6;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.hero {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(180deg, #16213e, transparent);
    animation: fadeIn 2s ease-in;
}
.hero h1 {
    font-family: 'Caveat', cursive;
    font-size: 4rem;
    color: #ff2e63;
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.5);
}
.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1rem auto;
    color: #00d4ff;
}
.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
}
.newsletter-form input[type="email"] {
    width: 70%;
    padding: 0.75rem;
    border-radius: 5px 0 0 5px;
    border: none;
    background: #1a1a2e;
    color: #e6e6e6;
}
.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border-radius: 0 5px 5px 0;
    border: none;
    background: #ff2e63;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background: #e91e63;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}
.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}
.collection-title {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: #ff2e63;
    margin-bottom: 1rem;
    text-align: center;
}
.about-section, .contact-section, .shop {
    padding: 3rem 0;
    text-align: center;
}
.contact-form, .newsletter-form {
    max-width: 600px;
    margin: 2rem auto;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #00d4ff;
    background: #1a1a2e;
    color: #e6e6e6;
}
.contact-form button, .shop-button {
    background: #ff2e63;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form button:hover, .shop-button:hover {
    background: #e91e63;
}
/* WooCommerce Styles */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}
.woocommerce ul.products li.product {
    text-align: center;
    background: #16213e;
    padding: 1rem;
    border-radius: 10px;
}
.woocommerce ul.products li.product img {
    border-radius: 8px;
}
.woocommerce ul.products li.product .button {
    background: #ff2e63;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
.woocommerce ul.products li.product .button:hover {
    background: #e91e63;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}