/* ============================
   RESET & BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
	margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* CAMPANELLA */
.notif-bell {
    position: relative;
    display: inline-block;
}

.notif-bell:hover i {
    color: #c4004f;
}

.notif-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #c4004f;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
    z-index: 9999;
}

/* ============================
   LAYOUT FULLSCREEN
============================ */
.section-fullscreen {
    width: 100%;
    min-height: 100vh;
    padding: 6rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================
   HEADER MODERNO
============================ */
#header {
    width: 100%;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-links-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.top-links-center {
    display: flex;
    gap: 2rem;
}

.top-links-center a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: 0.2s;
}

.top-links-center a:hover {
    color: #c4004f;
}

.top-links-center a.active {
    color: #c4004f;
    border-bottom: 2px solid #c4004f;
}

.top-links-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.menu-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c4004f;
}

/* Notifiche */
.notif-bell {
    position: relative;
    font-size: 1.3rem;
}

.notif-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #c4004f;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
}

/* ============================
   HERO FULLSCREEN
============================ */
#hero-rosanero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}

/* ============================
   FORM BOX
============================ */
.form-box {
    width: 100%;
    max-width: 750px;
    margin: 3rem auto;
    background: #111;
    padding: 2.2rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 25px rgba(255,255,255,0.05);
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.section-desc {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Inputs */
input, textarea, select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #333;
    background: #0a0a0a;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #c4004f;
}

/* Buttons */
.action-btn {
    background: #c4004f;
    color: #fff;
    padding: 0.9rem 1.4rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
}

.action-btn:hover {
    background: #e6005c;
}

/* ============================
   POST BOX
============================ */
.post-box {
    background: #0f0f0f;
    padding: 1.5rem;
    border-radius: 0.7rem;
    margin-bottom: 1.5rem;
    border: 1px solid #1c1c1c;
}

.post-box img {
    width: 100%;
    border-radius: 0.6rem;
    margin-top: 1rem;
}

/* ============================
   FOOTER
============================ */
#footer-rosanero {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-social a {
    color: #fff;
    margin: 0 0.6rem;
    font-size: 1.3rem;
}

.footer-links a {
    color: #ccc;
    margin: 0 0.6rem;
    font-size: 0.9rem;
}

.footer-copy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #777;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .form-box {
        padding: 1.6rem;
    }
}
