/* Reset e stili base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header e Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #e74c3c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #1a1a1a;
    color: white;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #e74c3c;
    color: white;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 4rem 1.5rem;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #333;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: start;
}

.profile-image {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: block;
}

.about-text {
    max-width: 75%;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Links Section */
.links-section {
    padding: 6rem 2rem;
    background-color: white;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.link-card i {
    font-size: 1.5rem;
}

.link-card.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.link-card.youtube {
    background-color: #FF0000;
}

.link-card.telegram {
    background-color: #0088cc;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 2rem;
    background-color: #333;
    color: white;
    text-align: center;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 1rem;
    text-align: center;
    transition: bottom 0.3s ease;
    z-index: 1001;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-popup button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
    background-color: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 8px 0;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 8px;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 5px;
    }
    
    .nav-links li {
        margin: 0 5px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 3px 8px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-image {
        max-width: 200px;
        margin: 0 auto 1.5rem;
    }
    
    .about-text {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .links-container {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 5px 0;
    }
    
    .nav {
        padding: 5px;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 0.3rem;
        margin-top: 2px;
    }
    
    .nav-links li {
        margin: 0 2px;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 2px 5px;
    }
    
    .profile-image {
        max-width: 150px;
    }
}

.embed-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    z-index: 10;
}

#root {
    position: relative;
    z-index: 10;
}

.embed-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 10px 0;
}

.embed-wrapper p {
    color: #666;
    font-style: italic;
}

.cat-animation {
    position: fixed;
    bottom: 20px;
    right: -200px;
    transform: scaleX(-1);
    width: 150px;
    height: auto;
    z-index: 9999;
    animation: catWalk 7s linear forwards;
    pointer-events: none;
}

@keyframes catWalk {
    0% {
        right: -200px;
        display: block;
    }
    10% {
        right: 10%;
    }
    80% {
        right: 90%;
    }
    100% {
        right: calc(100% + 200px);
    }
}

.section-title-button {
    display: block;
    margin: 0 auto 2rem auto;
    text-align: center;
    background-color: #e74c3c;
    color: white !important;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: 2rem;
    font-weight: 600;
    width: fit-content;
    min-width: 250px;
    transition: all 0.3s ease;
}

.section-title-button:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
} 