body {
    background-color: #7E2C2C;
    font-family: 'Knewave', script;
    color: #FFF;
    margin: 0;
}

.section {
    padding: 60px 0;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    max-width: 700px;
    margin: 0 auto;
    color: #f5eaea;
}

.about {
    background-color: #8B2E2E;
}

.art {
    background-color: #9C3A3A;
}

.prices {
    background-color: #A53E3E;
    position: relative;
}

.tos {
    background-color: #B64C4C;
}

.contact {
    background-color: #8B2E2E;
}

/* ART CARDS */
.art-card {
    background-color: #7E2C2C;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.art-card h3 {
    margin-top: 15px;
    color: #FFF;
}

.art-card .sticker {
    width: 40px;
    position: absolute;
    top: -20px;
    right: -10px;
}

.btn-primary {
    background-color: #994050 !important;
    /* soft strawberry red */
    border-color: #994050 !important;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #994050 !important;
    /* slightly brighter red */
    border-color: #994050 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(255, 107, 129, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* PRICES */
.price-list div {
    margin: 10px 0;
    font-size: 1.2rem;
}

.price-list span {
    background: #fff;
    color: #7E2C2C;
    border-radius: 4px;
    padding: 2px 8px;
}

.big-symbol {
    position: absolute;
    right: 10%;
    top: 50%;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
}

/* CONTACT FORM */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

textarea {
    width: 80%;
    border: none;
    border-radius: 8px;
    padding: 10px;
    resize: none;
    margin-bottom: 1rem;
    font-family: inherit;
}

.btn-send {
    background-color: #fff;
    color: #7E2C2C;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-send:hover {
    background-color: #f5eaea;
}


.btn-twitter {
    background-color: #c53f3f;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 75, 92, 0.4);
    text-decoration: none;
    margin-right: 10px;
    
}

.btn-twitter:hover {
    background-color: #c53f3f;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 75, 92, 0.5);
}
.btn-twitter img {
    width: 28px;
    height: 28px;
}


.btn-youtube {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    background-color: #c53f3f;
    margin-right: 10px;
    text-decoration: none;
}

.btn-youtube:hover {
    background-color: #c53f3f;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
}

.btn-youtube img {
    width: 28px;
    height: 28px;
}
