/*
Theme Name: Dominio in Vendita
Theme URI: https://staseratv.it
Author: StaseraTv
Author URI: https://staseratv.it
Description: Tema placeholder - dominio in vendita. Reindirizza tutte le pagine alla homepage con informazioni di contatto per l'acquisto del dominio.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dominio-in-vendita
Tags: one-page, custom-background, custom-logo, full-width-template, blog
*/

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --accent: #c8a96e;
    --accent-dark: #8a6d3b;
    --muted: #666;
    --border: rgba(200, 169, 110, 0.2);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', Helvetica, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

/* Background noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Vignette */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Main container */
.sale-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 680px;
    width: 100%;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 1.2s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ornament-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--accent));
}

.ornament-line.right {
    background: linear-gradient(to left, transparent, var(--accent));
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
}

/* Domain name */
.domain-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeUp 1.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.domain-name span {
    color: var(--accent);
}

/* Tag line */
.tag-line {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3rem;
    animation: fadeUp 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Main message card */
.message-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 3rem 2.5rem;
    position: relative;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    animation: fadeUp 1.2s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Corner accents */
.message-card::before,
.message-card::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--accent);
    border-style: solid;
    opacity: 0.7;
}

.message-card::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.message-card::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.sale-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sale-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Divider */
.card-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
    opacity: 0.6;
}

/* Contact info */
.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.contact-email {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-email:hover {
    opacity: 0.85;
}

.contact-email:hover::after {
    transform: scaleX(1);
}

/* Bottom ornament */
.bottom-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    animation: fadeUp 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

.dot.center {
    opacity: 0.9;
    width: 6px;
    height: 6px;
}
