@import url('reset.css'); 





body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
.picture{
    display: inline-block;
    vertical-align: middle;
}

.picture img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

h1 {
    font-size: 2.5rem;
    color: #67c5ff;
   
}



.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}


nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #67c5ff;
    transition: 0.3s;
    justify-content: flex-end;
}

nav ul li:hover {
    color: #ffcc00;
}


.hero-container {
    padding-top: 4rem;
    align-items: center;
}

.hero-subtitle {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--title-font);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-description {
    max-width: 480px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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




.hero-decoration {
    display: flex;
    justify-content: end;
}

.shape-blob {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobify 10s infinite alternate;
}

@keyframes blobify {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}




section {
    margin: 50px auto;
    width: 60%;
    text-align: justify;
    
}

section h2{
    padding: 0 1rem;
    width: max-content;
    line-height: 5rem;
    border-radius: 1rem 1rem 0 0 ;
    background-color: rgb(0, 25, 45);
}

h2 {
    font-size: 2rem;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}


.about-grid {
    align-items: center;
}

.about-img {
    display: flex;
    justify-content: center;
}

.img-placeholder {
    width: 250px;
    height: 300px;
    background-color: #e2e8f0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #94a3b8;
    border: 5px solid var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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


.primary {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#collection {
    display: flex;
    gap: 50px;
    justify-content: center;
}

#collection li {
    width: 160px;
}

#collection img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

#collection img:hover {
    transform: scale(1.1);
}


footer {
    margin-top: 50px;
    padding: 20px;
   
}

.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 1.5rem;
    color:  #67c5ff;
    transition: 0.3s;
}

.social-link:hover {
    color:  #67c5ff;
    transition: 0.3s;
    
}






