/* Reset e Variabili */
:root {
    --primary-orange: #FF6B35;
    --primary-green: #4ECDC4;
    --radioactive-green: #39FF14;
    --bright-yellow: #FFE135;
    --bright-orange: #FFB347;
    --deep-orange: #FF8C42;
    --red-orange: #DC143C;
    --dark-red: #8B0000;
    --dark-green: #006400;
    --dark-green-alt: #1A5F4A;
    --dark-orange: #CC4A1F;
    --yellow: #FFD93D;
    --light-bg: #FFF9F0;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0;
}

.logo-super-bassotta,
.logo-radioattiva {
    font-family: 'Bungee', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.logo-super-bassotta {
    font-size: 1.2rem;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 40%, #FF6347 70%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 0 transparent;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
    -webkit-text-stroke: 2px #8B4513;
    text-stroke: 2px #8B4513;
    paint-order: stroke fill;
}



.logo-radioattiva {
    font-size: 1rem;
    background: linear-gradient(180deg, #FFFF00 0%, #ADFF2F 40%, #32CD32 70%, #228B22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 0 transparent;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: -5px;
    -webkit-text-stroke: 2px #8B4513;
    text-stroke: 2px #8B4513;
    paint-order: stroke fill;
}

.logo-radioattiva::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -10%;
    width: 120%;
    height: 15px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(50, 205, 50, 0.6) 3px,
            rgba(50, 205, 50, 0.6) 6px,
            rgba(255, 255, 0, 0.4) 6px,
            rgba(255, 255, 0, 0.4) 9px
        ),
        linear-gradient(
            180deg,
            rgba(173, 255, 47, 0.8) 0%,
            rgba(50, 205, 50, 0.6) 50%,
            rgba(34, 139, 34, 0.4) 100%
        );
    z-index: -1;
    border-radius: 10px;
    filter: blur(2px);
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}


.logo-radioattiva::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(57, 255, 20, 0.6) 2px,
            rgba(57, 255, 20, 0.6) 4px,
            transparent 4px,
            transparent 8px
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(57, 255, 20, 0.4) 20%,
            rgba(57, 255, 20, 0.6) 50%,
            rgba(57, 255, 20, 0.4) 80%,
            transparent 100%
        ),
        radial-gradient(
            ellipse 180% 100% at center,
            rgba(57, 255, 20, 0.5) 0%,
            rgba(100, 255, 100, 0.3) 30%,
            rgba(150, 255, 150, 0.15) 60%,
            transparent 85%
        );
    z-index: -1;
    animation: energy-pulse 2s ease-in-out infinite, energy-move 3s ease-in-out infinite;
    border-radius: 5px;
    overflow: hidden;
    filter: blur(1px);
}

@keyframes energy-move {
    0%, 100% { transform: translate(-50%, -50%) translateX(0); }
    50% { transform: translate(-50%, -50%) translateX(5px); }
}

@keyframes energy-pulse {
    0%, 100% { 
        opacity: 0.4; 
    }
    50% { 
        opacity: 0.7; 
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 30%, #FFE135 60%, #FFD93D 100%);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--radioactive-green);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
    flex-wrap: wrap;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-logo-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.profile-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-logo .logo-super-bassotta {
    font-size: 4.5rem;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 40%, #FF6347 70%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 0 transparent;
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.4));
    position: relative;
    font-weight: 900;
    letter-spacing: 3px;
    -webkit-text-stroke: 3px #8B4513;
    text-stroke: 3px #8B4513;
    paint-order: stroke fill;
    margin-bottom: -10px;
    font-family: 'Bungee', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
}


.hero-logo .logo-radioattiva {
    font-size: 3.5rem;
    background: linear-gradient(180deg, #FFFF00 0%, #ADFF2F 40%, #32CD32 70%, #228B22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 0 transparent;
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.4));
    position: relative;
    font-weight: 900;
    letter-spacing: 3px;
    -webkit-text-stroke: 3px #8B4513;
    text-stroke: 3px #8B4513;
    paint-order: stroke fill;
    z-index: 2;
}

.hero-logo .logo-radioattiva::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 0, 0.4) 2px,
            rgba(255, 255, 0, 0.4) 4px,
            rgba(173, 255, 47, 0.5) 4px,
            rgba(173, 255, 47, 0.5) 6px,
            rgba(50, 205, 50, 0.4) 6px,
            rgba(50, 205, 50, 0.4) 8px,
            transparent 8px,
            transparent 12px
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 0, 0.3) 20%,
            rgba(173, 255, 47, 0.4) 50%,
            rgba(50, 205, 50, 0.3) 80%,
            transparent 100%
        );
    z-index: -1;
    filter: blur(3px);
    animation: motion-blur 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes motion-blur {
    0%, 100% { 
        transform: translate(-50%, -50%) translateX(0);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) translateX(10px);
        opacity: 0.8;
    }
}


.hero-logo .logo-radioattiva::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 120%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(57, 255, 20, 0.7) 3px,
            rgba(57, 255, 20, 0.7) 6px,
            transparent 6px,
            transparent 12px
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(57, 255, 20, 0.5) 15%,
            rgba(57, 255, 20, 0.7) 50%,
            rgba(57, 255, 20, 0.5) 85%,
            transparent 100%
        ),
        radial-gradient(
            ellipse 200% 120% at center,
            rgba(57, 255, 20, 0.6) 0%,
            rgba(100, 255, 100, 0.4) 25%,
            rgba(150, 255, 150, 0.2) 50%,
            transparent 80%
        );
    z-index: -1;
    animation: energy-pulse 2s ease-in-out infinite, energy-move 3s ease-in-out infinite;
    border-radius: 10px;
    overflow: hidden;
    filter: blur(1.5px);
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-description strong {
    color: var(--radioactive-green);
    text-shadow: 0 0 10px var(--radioactive-green);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.petra-illustration {
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.petra-illustration::before {
    content: '🐕';
    font-size: 8rem;
    filter: drop-shadow(0 0 20px var(--primary-green));
}

.glowing-eyes {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--radioactive-green);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--radioactive-green), 0 0 60px var(--radioactive-green);
    animation: glow 2s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

@keyframes glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: var(--light-bg);
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--radioactive-green);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.6);
}

.btn-amazon {
    background: #FF9900;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-amazon:hover {
    background: #FF8800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    border-radius: 2px;
}

/* Storia Section */
.storia {
    background: var(--white);
}

.storia-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.highlight-green {
    color: var(--radioactive-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.storia-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.quote-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-left: 5px solid var(--primary-orange);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.quote-text strong {
    color: var(--primary-orange);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quote-text em {
    color: var(--text-dark);
    font-style: italic;
    font-size: 1.15rem;
    display: block;
    margin-top: 0.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Libro Section */
.libro {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.libro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.libro-info h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.author {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.book-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.book-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.illustration-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    margin-bottom: 2rem;
}

.illustration-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.illustration-note small {
    display: block;
}

.libro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-poster {
    max-width: 100%;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-poster:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Shop Section */
.shop {
    background: var(--white);
}

.shop-content {
    text-align: center;
}

.shop-intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.coming-soon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.coming-soon-item {
    background: var(--light-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 3px dashed var(--primary-green);
    transition: all 0.3s;
}

.coming-soon-item:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.coming-soon-item h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.coming-soon-item p {
    color: var(--text-light);
    font-weight: 600;
}

.shop-note {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contatti Section */
.contatti {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--radioactive-green) 100%);
    color: var(--white);
}

.contatti .section-title {
    color: var(--white);
}

.contatti .section-title::after {
    background: var(--white);
}

.contatti-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.contact-item p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.instagram-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
}

.logo-super-bassotta-small,
.logo-radioattiva-small {
    font-family: 'Bungee', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    position: relative;
}

.logo-super-bassotta-small {
    font-size: 1rem;
    background: linear-gradient(180deg, #FF8C00 0%, #FF6347 50%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 0 transparent,
        2px 2px 3px rgba(255, 215, 0, 0.7),
        0 0 0 transparent;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3)) drop-shadow(-1px -1px 1px rgba(255, 215, 0, 0.8));
    font-weight: 900;
    letter-spacing: 1px;
    transform: perspective(300px) rotateX(-1deg);
    -webkit-text-stroke: 1.5px #FFD700;
    text-stroke: 1.5px #FFD700;
    paint-order: stroke fill;
    margin-bottom: -3px;
}

.logo-radioattiva-small {
    font-size: 0.85rem;
    background: linear-gradient(180deg, #ADFF2F 0%, #32CD32 50%, #228B22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 0 transparent,
        2px 2px 3px rgba(255, 255, 0, 0.7),
        0 0 0 transparent;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3)) drop-shadow(-1px -1px 1px rgba(255, 255, 0, 0.8));
    font-weight: 900;
    letter-spacing: 1px;
    transform: perspective(300px) rotateX(-1deg);
    -webkit-text-stroke: 1.5px #FFFF00;
    text-stroke: 1.5px #FFFF00;
    paint-order: stroke fill;
    position: relative;
}

.logo-radioattiva-small::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -8%;
    width: 116%;
    height: 8px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(50, 205, 50, 0.5) 2px,
            rgba(50, 205, 50, 0.5) 4px,
            rgba(255, 255, 0, 0.3) 4px,
            rgba(255, 255, 0, 0.3) 6px
        ),
        linear-gradient(
            180deg,
            rgba(173, 255, 47, 0.7) 0%,
            rgba(50, 205, 50, 0.5) 50%,
            rgba(34, 139, 34, 0.3) 100%
        );
    z-index: -1;
    border-radius: 5px;
    filter: blur(1px);
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

.author-name {
    font-size: 0.9rem;
    color: var(--white);
    margin: 1rem 0 0.5rem;
    font-weight: 400;
}

.author-name strong {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-green);
}

.coming-soon-social {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo {
        align-items: center;
    }

    .hero-logo .logo-super-bassotta {
        font-size: 2.5rem;
    }

    .hero-logo .logo-radioattiva {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .libro-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .coming-soon {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-section {
    padding: 5rem 0;
    background: var(--white);
    min-height: 70vh;
}

.policy-section h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.policy-content a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-links {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .policy-section h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo .logo-super-bassotta {
        font-size: 2rem;
    }

    .hero-logo .logo-radioattiva {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .petra-illustration {
        width: 200px;
        height: 200px;
    }

    .petra-illustration::before {
        font-size: 5rem;
    }

    .logo-super-bassotta {
        font-size: 1rem;
    }

    .logo-radioattiva {
        font-size: 0.85rem;
    }
}
