*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,css{
    height: 100%;
    width: 100%;
    background-color: black;
    color: white;
}

body{
    overflow-x: hidden;
}

#nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;


}

#part2{
    display: flex;
    gap: 30px;
}

/* scroll text  */


#page2{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    
}
 
h1{
    font-size: 40vw;
    text-transform: uppercase;
}


 /* card css */

.container{
    display:grid;
    margin-left: 40px;
    margin-right: 40px;
    grid-template-columns:repeat(4,1fr);
    color: black;
    gap:25px;
}

.card{
    background:olivedrab;
    /* border-radius:20px; */
    overflow:hidden;

    transition:0.4s;
    cursor:pointer;

    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.card:hover{
    /* transform:translateY(-10px) scale(1.03); */

    box-shadow:0 20px 35px rgba(0,0,0,0.2);
}

.image-box{
    width:100%;
    height:320px;

    position:relative;
    overflow:hidden;
}

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

    position:absolute;
    top:0;
    left:0;

    transition:0.5s;
}

.main-img{
    opacity:1;
}

.hover-img{
    opacity:0;
}

.card:hover .main-img{
    opacity:0;
    transform:scale(1.1);
}

.card:hover .hover-img{
    opacity:1;
    transform:scale(1.1);
}

.content{
    padding:20px;
    text-align:center;
}

.content h3{
    margin-bottom:10px;
}

.content p{
    margin-bottom:15px;
    font-size:18px;
}

button{
    width:100%;
    padding:12px;

    border:none;
    /* border-radius:50px; */

    background:black;
    color:white;

    cursor:pointer;
}

/* Responsive */

@media(max-width:1200px){
    .container{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){
    .container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .container{
        grid-template-columns:1fr;
    }
}




/* cursor css */

#cursor{
    height: 30px;
    width: 30px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    font-size: 8px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 9;
    pointer-events: none;

    
}




#footer{
    width: 100%;
    background-color: #050505;
    color: white;
    padding: 70px 80px 40px;
}

.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

/* Logo */
.footer-logo h2{
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-logo p{
    font-size: 12px;
    color: #bbb;
    letter-spacing: 2px;
}

/* Links */
.footer-links{
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-links ul{
    list-style: none;
}

.footer-links ul li{
    margin-bottom: 12px;
}

.footer-links ul li a{
    text-decoration: none;
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-links ul li a:hover{
    color: #c8a96b;
}

/* Line */
.footer-line{
    width: 100%;
    height: 1px;
    background-color: #444;
    margin: 50px 0;
}

/* Bottom */
.footer-bottom{
    text-align: center;
}

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

.social-icons a{
    width: 45px;
    height: 45px;
    border: 1px solid #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover{
    background-color: #c8a96b;
    border-color: #c8a96b;
    color: black;
}

.footer-bottom p{
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px){

    #footer{
        padding: 50px 30px;
    }

    .footer-top{
        flex-direction: column;
        gap: 40px;
    }

    .footer-links{
        gap: 40px;
    }
}

@media (max-width: 600px){

    .footer-links{
        flex-direction: column;
        gap: 25px;
    }

    .footer-logo h2{
        font-size: 28px;
    }
}




.hero{
      width:100%;
      height:70vh;
      background:#050505;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      position:relative;
    }

    .hero h1{
      color:#e6bf73;
      font-size:22vw;
      font-weight:900;
      text-transform:lowercase;
      letter-spacing:-18px;
      line-height:0.8;
      user-select:none;
    }

    .hero .subtitle{
      margin-top:90px;
      text-align:center;
      color:#e6bf73;
      text-transform:uppercase;
      font-size:2vw;
      line-height:1.2;
      font-weight:500;
      letter-spacing:-1px;
    }

    /* Responsive */

    @media (max-width: 900px){

      .hero h1{
        font-size:28vw;
        letter-spacing:-8px;
      }

      .hero .subtitle{
        margin-top:50px;
        font-size:4vw;
      }
    }

    @media (max-width: 500px){

      .hero h1{
        font-size:30vw;
        letter-spacing:-5px;
      }

      .hero .subtitle{
        font-size:5vw;
      }
    }



  

    /* Navbar */

    #main{
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

#nav{
    width: 96%;
    background-color: #fff;
    border-radius: 22px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 5px 25px rgba(255,255,255,0.08);
}

/* Logo */

#logo{
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-box{
    width: 42px;
    height: 42px;
    background-color: #000;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box i{
    color: #fff;
    font-size: 22px;
}

#logo h2{
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

/* Center Links */

#part2{
    display: flex;
    align-items: center;
    gap: 35px;
}

#part2 a{
    text-decoration: none;
    color: #555;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

#part2 a:hover{
    color: #000;
}

/* Orders Badge */

.orders{
    display: flex;
    align-items: center;
    gap: 10px;
}

.orders span{
    width: 26px;
    height: 26px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
}

/* Dropdown */

.dropdown{
    position: relative;
}

.dropbtn{
    border: none;
    background-color: transparent;
    font-size: 18px;
    color: #555;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 4px;

    padding: 10px 14px;
    border-radius: 10px;

    transition: 0.3s;
}

.dropbtn:hover{
    background-color: #f2f2f2;
    color: #000;
}

.dropdown-content{
    position: absolute;
    top: 55px;
    left: 0;

    width: 190px;
    background-color: #fff;
    border-radius: 14px;

    padding: 10px;

    display: none;
    flex-direction: column;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.dropdown-content a{
    padding: 12px 14px;
    border-radius: 10px;
    color: #333 !important;
}

.dropdown-content a:hover{
    background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content{
    display: flex;
}

/* Right Section */

#right{
    display: flex;
    align-items: center;
    gap: 18px;
}

#search{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

#search:hover{
    background-color: #e8e8e8;
}

#search i{
    font-size: 22px;
    color: #111;
}

#right img{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

#upgrade{
    border: none;
    background-color: #111;
    color: #fff;

    padding: 15px 28px;
    border-radius: 14px;

    font-size: 18px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    transition: 0.3s;
}

#upgrade:hover{
    transform: translateY(-2px);
    background-color: #222;
}

/* Responsive */

@media (max-width: 1100px){

    #part2{
        display: none;
    }

    #nav{
        width: 100%;
    }

    #logo h2{
        font-size: 20px;
    }

    #upgrade{
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media (max-width: 600px){

    #upgrade{
        display: none;
    }

    #search{
        width: 42px;
        height: 42px;
    }

    #right img{
        width: 45px;
        height: 45px;
    }

    #logo h2{
        font-size: 18px;
    }
}