/*
Theme Name: Cash For Culture
Theme URI: https://vovance.com
Author: Vovane
Author URI: https://vovance.com
Description: A Cash For Culture for WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Cash For Culture
*/

:root {
    --primary: hsl(2, 83%, 47%);
    --secondary: #333333;
    --light: #F8F8F8;
    --dark: #222222;
    --gray: #777777;
}
html {
    margin-top: 0px !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    color: var(--dark);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.cashforculture.com/wp-content/uploads/2025/06/https___hypebeast.com_image_2022_05_louis-vuitton-nike-air-force-1-virgil-abloh-launch-exhibition-tw.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 5px;
    transition: all 0.3s;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid white;
}
.brands {
    padding: 60px 0;
    text-align: center;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.brand-item {
    background-color: var(--light);
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.brand-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}
.how-it-works {
    padding: 60px 0;
    background-color: var(--light);
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}
.step-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}
.sell-form {
    padding: 60px 0;
}
form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.upload-area {
    border: 2px dashed #ddd;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    cursor: pointer;
}
.upload-area:hover {
    border-color: var(--primary);
}
.recent-purchases {
    padding: 60px 0;
    background-color: var(--light);
}
.sneaker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.sneaker-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.sneaker-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.sneaker-info {
    padding: 20px;
}
.price {
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
}
.testimonials {
    padding: 60px 0;
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}
.faq {
    padding: 60px 0;
    background-color: var(--light);
}
.faq-item {
    margin-bottom: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary);
}
.cta {
    padding: 20px 0;
    text-align: center;
    background-color: var(--primary);
    color: white;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.benefits-4{
	 display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.benefit {
    text-align: center;
    padding: 20px;
}
.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary);
}
.footer-links h3 {
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: white;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    color: white;
    font-size: 20px;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}
@media (max-width: 768px) {
    .steps, .sneaker-grid, .testimonial-grid, .benefits,.benefits-4, .footer-content {
        grid-template-columns: 1fr;
    }
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-links {
        display: none;
    }
}
div.wpforms-container-full:not(:empty) {
	margin: 0 15%;
}
div.wpforms-container-full input[type=submit]:not(:hover):not(:active), div.wpforms-container-full button[type=submit]:not(:hover):not(:active), div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full input[type=submit]:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full button[type=submit]:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
    background-color: var(--wpforms-button-background-color-alt, var(--wpforms-button-background-color));
    color: var(--wpforms-button-text-color);
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 5px;
    transition: all 0.3s;
}

.logo-text{
	font-size:12px;
}
