@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('../assests/img/fondoWeb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.top-bar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 999; 
}

.subscribe-btn, .share-btn {
    background-color: white;
    color: #002c49; 
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
}

.subscribe-btn:hover, .share-btn:hover {
    background-color: #002c49;
    color: white;
}

.subscribe-btn:hover i,
.share-btn:hover i {
    color: white;
}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section{
    margin-top: -16px; 
    margin-bottom: 25px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
}



.info-container {
    max-width: 800px;
}

.username {
    font-size: 26px;
    font-weight: 600;
    color: #f86d08; 
    margin-bottom: 5px;
}

.location {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.tagline {
    font-size: 20px;
    color: #f86d08; 
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 20px 0;
}

.footer-logo img {
    height: 50px;
}

.cta-button {
    background-color: white;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
}


@media (max-width: 768px) {
    .description {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }
    
    .username {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        font-size: 18px;
    }
}