@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --brand-navy: #0b1329;
    --brand-card: #111c38;
    --brand-gold: #c5a059;
    --brand-gold-hover: #b08b46;
}

body {
    background-color: var(--brand-navy);
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.font-serif {
    font-family: 'Cinzel', serif;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}

.bg-brand-navy {
    background-color: var(--brand-navy) !important;
}

.bg-brand-card {
    background-color: var(--brand-card) !important;
}

/* Bottone personalizzato Oro */
.btn-brand-gold {
    background-color: var(--brand-gold);
    color: var(--brand-navy);
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}
.btn-brand-gold:hover {
    background-color: var(--brand-gold-hover);
    color: var(--brand-navy);
}

/* Navbar */
.navbar-custom {
    background-color: rgba(11, 19, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Custom Form Inputs */
.form-control-custom {
    background-color: var(--brand-navy);
    border: 1px solid #334155;
    color: #fff;
}
.form-control-custom:focus {
    background-color: var(--brand-navy);
    border-color: var(--brand-gold);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}
.form-control-custom::placeholder {
    color: #64748b;
}

/* Cards e Bordi */
.border-brand-gold {
    border-color: rgba(197, 160, 89, 0.3) !important;
}
.card-custom {
    background-color: var(--brand-card);
    border: 1px solid #1e293b;
    transition: border-color 0.3s ease;
}
.card-custom:hover {
    border-color: rgba(197, 160, 89, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #1ebc57;
    color: #fff;
}

/* Separatore Decorativo */
.divider-gold {
    width: 80px;
    height: 3px;
    background-color: var(--brand-gold);
    margin: 15px auto;
}