*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
/*========== Poppins ==========*/
@font-face{
    font-family:"Poppins";
    src:url("fonts/Poppins-Regular.ttf") format("truetype");
    font-weight:400;
}
@font-face{

    font-family:"Poppins";

    src:url("fonts/Poppins-Bold.ttf") format("truetype");

    font-weight:700;

}


/*========== Orbitron ==========*/

@font-face{

    font-family:"Orbitron";

    src:url("fonts/Orbitron-Regular.ttf") format("truetype");

    font-weight:400;

}

@font-face{

    font-family:"Orbitron";

    src:url("fonts/Orbitron-Bold.ttf") format("truetype");

    font-weight:700;

}
/* ==========================
   GENERAL
========================== */

html{
    scroll-behavior:smooth;
}

body{

    background:#212529;
    color:white;

}


/* ==========================
HEADER
========================== */

header{
    background:#6610f2;
    width:100%;
    min-height:140px; 
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 50px;
}

/* ==========================
REGISTER BUTTON
========================== */

.logo a{

    width:60px;
    height:60px;

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

    border-radius:50%;

    background:#212529;

    color:white;

    text-decoration:none;

    font-size:24px;

    transition:.4s;

}

.logo a:hover{

    background:white;
    color:#212529;

}

/* ==========================
SEARCH
========================== */

.search-box{

    position:relative;

}

.search-box input{

    width:250px;

    padding:12px;

    border:none;

    border-radius:8px;

    outline:none;

}

/* پیشنهادها */

.suggestions{

    display:none;

    position:absolute;

    top:50px;

    width:100%;

    background:white;

    border-radius:8px;

    overflow:hidden;

}

.search-box:hover .suggestions{

    display:block;

}

.suggestions a{

    display:block;

    padding:12px;

    color:#212529;

    text-decoration:none;

}

.suggestions a:hover{

    background:#6610f2;
    color:white;

}

/* ==========================
BANNER
========================== */

.banner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    gap:20px;

}

.banner-text{

    width:50%;

}

.banner-text h1{

    font-size:38px;

    line-height:70px;

}

.banner-images{

    display:flex;

    gap:20px;

}



/* ==========================
PARTS
========================== */

.parts{

    margin-top:50px;

}

.part{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:40px;

}

.part-title{

    width:60%;

}

.part-title h2{

    font-size:28px;

}

.part-image img{

    width:400px;

    height:300px;

    border-radius:10px;

    background:#444;

    object-fit:cover;
margin-top: 60px;
}
/*=========================
BUTTONS
=========================*/

.buttons{

    display:flex;
    justify-content:center;
    gap:20px;

    margin-top:60px;
    margin-bottom:40px;

}

.btn{

    background:#6610f2;
    color:white;

    padding:15px 35px;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.btn:hover{

    transform:scale(1.05);

}


/*=========================
REGISTER TEXT
=========================*/

.register-text{

    text-align:center;

    margin-top:40px;
    margin-bottom:40px;

}

.register-text h1{

    font-size:40px;

    color:white;

}


/*=========================
FOOTER
=========================*/

footer{

    background:#6610f2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:35px 40px;

}


/*=========================
COMMENT
=========================*/

.comment textarea{

    width:300px;

    height:120px;

    resize:none;

    border:none;

    outline:none;

    border-radius:8px;

    padding:15px;

    font-size:18px;

}


/*=========================
FOOTER BUTTONS
=========================*/

.footer-buttons{

    display:flex;

    gap:20px;

}


.footer-buttons a{

    text-decoration:none;

    color:white;

    background:#212529;

    padding:15px 20px;

    border-radius:8px;

    transition:.4s;

    font-size:22px;

}


/*=========================
INSTAGRAM
=========================*/

.instagram:hover{

    background:#E1306C;

}


/*=========================
TELEGRAM
=========================*/

.telegram:hover{

    background:#229ED9;

}


/*=========================
ABOUT
=========================*/

.about:hover{

    background:white;

    color:#212529;

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:900px){

header{

    flex-direction:column;

    gap:20px;

}


.banner{

    flex-direction:column;

    text-align:center;

}


.banner-text{

    width:100%;

}


.banner-images{

    justify-content:center;

    flex-wrap:wrap;

}


.part{

    flex-direction:column;

    gap:20px;

}


.part-title{

    width:100%;

    text-align:center;

}


.buttons{

    flex-direction:column;

    align-items:center;

}


footer{

    flex-direction:column;

    gap:30px;

}


.comment textarea{

    width:90vw;

}

}

@media(max-width:600px){

.banner-text h1{

    font-size:28px;

    line-height:45px;


}


.part-image img{

    width:90vw;

    height:180px;

}

.part-title h2{

    font-size:22px;

}

.btn{

    width:220px;

    text-align:center;

}

.footer-buttons{

    flex-wrap:wrap;

    justify-content:center;
}
}

html,

body{
    height:100%;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

footer{
    margin-top:auto;
}
.comment{

    display:flex;

    align-items:center;

    gap:15px;

}

.comment-btn{

    background:#212529;

    color:white;

    border:none;

    padding:15px 25px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    font-size:18px;

}

.comment-btn:hover{

    background:white;

    color:#212529;

}
.part-text{

    margin-top:20px;

    font-size:18px;

    line-height:32px;

    text-align:justify;

    color:#f1f1f1;

}
.banner-images img,
.part-image img{

    box-shadow:0 8px 20px rgba(0,0,0,.4);

}
.register-form{

    box-shadow:0 10px 25px rgba(0,0,0,.45);

}
.btn,
.about,
.comment-btn{

    box-shadow:0 5px 15px rgba(0,0,0,.35);

}
.comment textarea{

    box-shadow:0 5px 15px rgba(0,0,0,.35);

}
header{

    box-shadow:0 3px 12px rgba(0,0,0,.4);

}
footer{

    box-shadow:0 -3px 12px rgba(0,0,0,.4);

}
@media(max-width:900px){
    .comment{

        flex-direction:column;
    
        align-items:center;
    
    }
    
    .comment-btn{
    
        width:180px;
    
    }
}
/* ==========================
STORE
========================== */

.store{

    margin:70px auto;

    text-align:center;

}

.store h2{

    font-size:34px;

    margin-bottom:35px;

}

.product-card{

    width:320px;

    margin:auto;

    background:#2b3035;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.4);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.product-card h3{

    margin-top:20px;

    font-size:28px;

}

.product-card p{

    padding:15px 20px;

    line-height:28px;

    color:#ddd;

}

.product-card h4{

    color:#6610f2;

    font-size:28px;

    margin-bottom:20px;

}

.product-card button{

    width:85%;

    margin-bottom:25px;

    padding:14px;

    background:#6610f2;

    color:white;

    border:none;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    font-size:18px;

}

.product-card button:hover{

    background:#7d3cff;

}

@media(max-width:600px){

.product-card{

    width:90%;

}

}
/* Header Buttons */

.header-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.home-btn,
.logo{
    /* width:60px;
    height:60px; */
    /* border-radius:50%; */
    display:flex;
    justify-content:center;
    align-items:center;
    /* background:#212529; */
    color:#212529;
    /* text-decoration:none; */
    font-size:24px;
    /* transition:.3s; */
}

.home-btn:hover,
.logo:hover{

    /* background:white; */

    color:white;

}
h1,
h2,
h3{

    font-family:"Orbitron",sans-serif;

    font-weight:700;

}
.btn,
.comment-btn,
.about,
.home-btn,
.logo{

    font-family:"Orbitron",sans-serif;

}

/* ===== Summary Table ===== */

.summary{

    margin:70px auto;
    width:90%;
    text-align:center;

}

.summary h2{

    margin-bottom:30px;

    font-size:32px;

}

.summary-table{
    width:100%;
    height: 500px;
    border-collapse:collapse;
    background:#2b3035;
    box-shadow:0 8px 20px rgba(0,0,0,.4);
    border-radius:12px;
    overflow:hidden;
}

.summary-table th{
    background:#6610f2;
    color:white;
    padding:18px;
    font-size:20px;
}

.summary-table td{
    padding:18px;
    border-bottom:1px solid #444;
    color:white;
}

.summary-table tr:hover{
    background:#343a40;
}

.summary-table{
    font-size:14px;
}

.summary-table th,
.summary-table td{
    padding:10px;
}
/* .header-logo-text{
    color: #212529;
    font-weight: bold;
} */
.search-box{

    display:flex;

    align-items:center;

}

.search-box input{

    width:250px;

    height:45px;

    padding:0 15px;

    border:none;

    outline:none;

    border-radius:8px 0 0 8px;

}

.search-btn{
    width:50px;
    height:45px;
    border:none;
    background:#212529;
    color:white;
    border-radius:0 8px 8px 0;
    cursor:pointer;
    transition:.3s;
}
.search-btn:hover{
    background:#ffffff;
    color:#212529;
}
.logo-title{
    color:white;
    font-size:32px;
    font-family:"Orbitron",sans-serif;
}
nav{
    display:flex;
    gap:30px;
}
nav a{
    color:white;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s ease;
}
nav a:hover{
    background:#212529;
    color:white;
    box-shadow:0 6px 15px rgba(0,0,0,.35);
    transform:translateY(-2px);
}
.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}
.logo img{
    height:90px;
    width:auto;
    transition:0.3s;
}
.logo img:hover{
    transform:scale(1.08);
}
nav a.active{
    background:#212529;
    color:white;
}
nav a.active{
    background:#212529;
    color:white;
}
/* ===========================
   Mobile Responsive Header
=========================== */
@media (max-width:768px){

    header{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        padding:20px;
        gap:20px;
        min-height:auto;
    }
    
    .logo img{
        height:70px;
    }
    
    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }
    
    nav a{
        font-size:16px;
        padding:10px 15px;
    }
    
    .search-box{
        width:100%;
        justify-content:center;
    }
    
    .search-box input{
        width:75%;
    }
    
    .search-btn{
        width:50px;
    }

    }
    .banner{
        flex-direction:column;
        text-align:center;
    }
    
    .banner-images{
        margin-top:20px;
    }
    
    .part{
        flex-direction:column;
        text-align:center;
    }
    

    
    .part-text{
        text-align:justify;
    }
    .banner{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:40px;
        padding:40px;
    }
    

    
    .banner-text{
        flex:1;
    }
    
    .banner-text h1{
        font-size:38px;
        margin-bottom:20px;
    }
    
    .banner-text p{
        font-size:17px;
        line-height:32px;
        text-align:justify;
        color:#ddd;
    }
    .banner{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
    
    .banner-image{
        order:1;
    }
    
    .banner-text{
        order:2;
        margin-top:20px;
    }
    
    .banner-image img{
        width:90%;
        max-width:320px;
        height:auto;
    }
    
    .banner-text h1{
        font-size:26px;
    }
    
    .banner-text p{
        font-size:15px;
        line-height:28px;
        text-align:justify;
    }
    .products{

        display:flex;
    
        justify-content:center;
    
        gap:30px;
    
        flex-wrap:wrap;
    
    }
    .footer-logo{

        display:flex;
    
        justify-content:center;
    
        align-items:center;
    
    }
    
    .footer-logo img{
    
        width:310px;
    
        height:auto;
    
        transition:.3s;
    
    }
    
    .footer-logo img:hover{
    
        transform:scale(1.1);
    
    }
    select,
    textarea{
    
        width:100%;
    
        padding:12px;
    
        margin-bottom:20px;
    
        border:none;
    
        border-radius:8px;
    
        background:#343a40;
    
        color:white;
    
    }
    
    .radio-group{
    
        display:flex;
    
        flex-direction:column;
    
        gap:10px;
    
        margin-bottom:20px;
    
    }/* Form */

.register-form{

    width:90%;
    max-width:500px;
    margin:40px auto;
    padding:30px;

    background:#2b3035;

    border-radius:15px;

}

.register-form form{

    display:flex;
    flex-direction:column;
}

.register-form input,
.register-form select,
.register-form textarea{

    width:100%;
    padding:12px;
    margin-bottom:18px;

    border:none;
    border-radius:8px;

    background:#343a40;
    color:white;

    box-sizing:border-box;
}

.register-form textarea{

    resize:vertical;
}

.register-form button{

    width:100%;
}
.register-btn{

    width:100%;

    padding:15px;

    margin-top:15px;

    border:none;

    border-radius:12px;

    background:#6610f2;

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;

    box-shadow:0 8px 20px rgba(102,16,242,.35);

}

.register-btn:hover{

    background:#7d2cff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(102,16,242,.5);

}

.register-btn:active{

    transform:scale(.97);

}
.radio-group label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: white;
    margin-bottom: 12px;
    cursor: pointer;
}

.radio-group input[type="radio"]{
    width: auto;
    margin: 0;
    accent-color: #6610f2;
    flex-shrink: 0;
}
/* ===== Checkbox ===== */

.checkbox-group{

    margin:15px 0;

}

.checkbox-group label{

    display:flex;

    align-items:center;

    gap:10px;

    color:white;

    cursor:pointer;

    font-size:16px;

}

.checkbox-group input[type="checkbox"]{

    width:auto;

    margin:0;

    accent-color:#6610f2;

}

/* ===== Register Button ===== */

.register-btn{

    width:100%;

    padding:15px;

    margin-top:20px;

    border:none;

    border-radius:12px;

    background:#6610f2;

    color:white;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;

    box-shadow:0 8px 20px rgba(102,16,242,.35);

}

.register-btn:hover{

    background:#7d2cff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(102,16,242,.5);

}

.register-btn:active{

    transform:scale(.97);

}
textarea{
    resize: none !important;
}