/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('Final_Fonts/roboto-v50-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('Final_Fonts/nunito-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 3rem;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.section-title {
    font-size: 2rem;
    color: #333;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-circle {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    overflow: hidden; 
}

.profile-circle img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.username {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.edit-button {
    background-color: #fff;
    border: 2px solid #6c5ce7;
    color: #6c5ce7;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.edit-button:hover {
    background-color: #f8f9fa;
}

.share-button {
    background-color: #6c5ce7;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 1rem;
}

.share-button:hover {
    background-color: #5b4bc4;
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sticker-box {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}


.sticker-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}


.sticker-image {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    overflow: hidden; 
}

.sticker-image img {  
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticker-caption {
    padding: 1rem;
    text-align: center;
}

.sticker-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.sticker-caption p {
    font-size: 0.9rem;
    color: #666;
}
.nav-logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 0.5rem;
}
.logo-animated {
    height: 150px;
    width: auto;
    animation: none;
}

/* Media Mobile Screen Tag */
@media (max-width: 1024px) {
    nav {
        padding: 1rem;
    }

    .nav-logo {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .logo-animated {
        height: 130px;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }

    .page-container {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .profile-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .profile-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .share-button {
        margin-left: 0;
    }

    .stickers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
