html, body{
    scroll-behavior: smooth;
}

body{
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-links{
    display: flex;
    gap: 10px;
}

.nav-links a{
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover{
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

header{
    margin-top: 120px;
    padding: 2rem;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.header p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #34495e;
}

.header p:first-of-type {
    font-weight: 600;
}

.header p:last-of-type {
    font-style: italic;
    color: #7f8c8d;
}
.shop{
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: #4017c6;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite ease;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.now:active{
    transform: scale(0.9);
}
.feat{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin: 3rem 0 1rem 0;
}

.feat h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    position: relative;
}

.feat h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.feat p {
    font-size: 1.1rem;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}
.container {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 4 equal columns */
  grid-template-rows: repeat(9, 200px);  /* 3 rows with fixed height */
  gap: 2px;
  width: 90vw;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.container2 {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 4 equal columns */
  grid-template-rows: repeat(16, 200px);  /* 3 rows with fixed height */
  gap: 2px;
  width: 90vw;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.container div {
  display: flex;
  align-items: end;
  padding: 0px;
  justify-content: center;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 1px;
  box-sizing: border-box;
}
.container2 div {
  display: flex;
  align-items: end;
  padding: 0px;
  justify-content: center;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 1px;
  box-sizing: border-box;
}
.nig1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nig1:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.nigg1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}


.nig1:first-child {
  grid-row: span 2; 
  grid-column: span 4;/* Make the first item span two rows */
}
.nig1:nth-child(2){
    grid-column: span 4;
    object-fit: contain;

}
.nig1:nth-child(3){
    grid-column: span 4 ;
    grid-row: span 2;
}
.nig1:nth-child(4){
    grid-column: span 4;
    grid-row: span 2;
}
.nig1:nth-child(5){
    grid-column: span 4;
    grid-row:  span 2;
}
.nig1:nth-child(6){
    grid-column: span 4;
}
.nig1:nth-child(7){
    grid-column: span 2;
}
.nig1:nth-child(8){
    grid-column: span 2 ;
}
.nig1:nth-child(9){
    grid-column: span 4;
    grid-row: span 2;
    
}
.nig1:nth-child(10){
    grid-column: span 4 ;
    grid-row: span 3;
}
.nig1:nth-child(11){
    grid-column: span 4 ;
    grid-row: span 2;
}




.nigg1:first-child {
  grid-row: span 2; 
  grid-column: span 4;/* Make the first item span two rows */
}


.nigg1:nth-child(2){
    grid-column: span 4;
    object-fit: contain;

}
.nigg1:nth-child(3){
    grid-column: span 4 ;
    grid-row: span 2;
}
.nigg1:nth-child(4){
    grid-column: span 4;
    grid-row: span 2;
}
.nigg1:nth-child(5){
    grid-column: span 4;
    grid-row:  span 2;
}
.nigg1:nth-child(6){
    grid-column: span 4;
}
.nigg1:nth-child(7){
    grid-column: span 2;
}
.nigg1:nth-child(8){
    grid-column: span 2 ;
}
.nigg1:nth-child(9){
    grid-column: span 4;
    grid-row: span 2;
    
}
.nigg1:nth-child(10){
    grid-column: span 4 ;
    grid-row: span 3;
}
.nigg1:nth-child(11){
    grid-column: span 4 ;
    grid-row: span 2;
}
.nigg1:nth-child(12){
    grid-column: span 2 ;
    grid-row: span 2;
}
.nigg1:nth-child(12){
    grid-column: span 4;
    grid-row: span 2;
}
.nigg1:nth-child(13){
    grid-column: span 4 ;
    grid-row: span 2;
}
.nigg1:nth-child(14){
    grid-column: span 4 ;
    grid-row: span 1;
}
.nigg1:nth-child(15){
    grid-column: span 4;
    grid-row: span 2;
}
.nigg1:nth-child(16){
    grid-column: span 4;
    grid-row: span 3;
}
.nigg1:nth-child(17){
    grid-column: span 4 ;
    grid-row: span 2;
}
.nigg1:nth-child(18){
    grid-column: span 4 ;
    grid-row: span 1;
}
.nigg1:nth-child(19){
    grid-column: span 4 ;
    grid-row: span 1;
}

.grid-container{
    display: grid;
    grid-template-columns: auto auto;
    padding: 10px; 
    gap: 5px;
    width: 90vw;
    max-width: 800px;
    margin: 0 auto;
    gap: 1rem;
   


    

}
@keyframes appear{
    from{
        opacity: 0;
        transform: translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }

}
.fade{
  display: flex;
  align-items: end;
  justify-content: center;
  font-weight: bold;
  height: 400px;
  border-radius: 12px;
  animation: appear 1s linear ;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.fade:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.fade img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fade:hover img {
    transform: scale(1.1);
}


.bitch{
    width: 80%;
    max-width: 600px;
    height: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    color: white;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.alot{
    display: flex;
    height: 50px;
    align-self: center;
    align-items: center;
    font-weight: bold;
    color: white;
    border: 2px solid white;
    background: transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    padding: 0 2rem;
    cursor: pointer;
}

.alot:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.alot a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

.alot1{
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.hood{
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    color: #34495e;
    margin: 1rem 0;
    background: rgba(52, 152, 219, 0.05);
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 0 8px 8px 0;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.social a {
    transition: all 0.3s ease;
}

.social a:hover {
    transform: scale(1.2) rotate(5deg);
}

.social i {
    color: #2c3e50;
    transition: all 0.3s ease;
}

.social a:hover i {
    color: #3498db;
}od:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

.hood h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.social{
    display: flex;
    gap :25px;
    flex-wrap: wrap;
    justify-content: center;
}  

.footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(44, 62, 80, 0.05);
    text-align: center;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.footer p {
    margin: 0.5rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    .header h1 {
        font-size: 2rem;
    }

    .feat h2 {
        font-size: 2rem;
    }

    nav {
        padding: 0 1rem;
        height: 60px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }

    .container {
        grid-template-columns: repeat(4, 1fr);
        width: 95vw;
    }

    .grid-container {
        grid-template-columns: auto;
        width: 90%;
    }

    .bitch {
        width: 95%;
        padding: 1.5rem;
    }

    .social {
        gap: 1.5rem;
    }
}

@media screen and (max-width:500px){
    .grid-container{
        grid-template-columns: auto;
        width: 90%;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .feat h2 {
        font-size: 1.8rem;
    }

    .nav-links{
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .shop {
        width: 150px;
        height: 45px;
        font-size: 1rem;
    }

    .bitch {
        flex-direction: column;
        text-align: center;
    }

    .alot1 {
        font-size: 1.2rem;
    }
}
@media screen and (max-width:400px) {
    .nav-links{
        gap: 10px;
    }
    
}


