*{
    margin: 0;
    padding: 0;
}

body{
    font-size: 62.5%;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    background-color: #333;
    
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main_header{
    min-height: 100vh;
    background-color: rgba(13, 25, 24, 0.7);
    padding-top: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.video_container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    direction: ltr;
}

.header_Video{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    max-width: 100%;
}

.main_nav{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.main_nav_list{
    display: flex;
    list-style-type: none;
}

.main_nav_list_item:not(:last-child){
    margin-right: 30px;
}

.main_nav_list_link{
    display: block;
    color: white;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

.main_nav_list_link:hover{
    color: #F6C935;
    transition: color .1s;
}

.hero_box{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
}

.heading_primary{
    font-size: 90px;
    color: white;
    font-family: 'Playfair Display';
    font-weight: 700;
    width: 50%;
    line-height: 1.1;
    animation: primaryHeading 1s cubic-bezier(0,.12,0,.99);
}

.hero_box_graphic_element{
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    width: 27%;
    right: 10%;
    animation: animName 20s linear infinite;
}

/*-- Section About --*/

#section-about{
    background: url(img/about_us_bg.jpg) no-repeat top center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.heading_secondary{
 font-size: 80px;
    color: white;
    font-family: 'Playfair Display';
    font-weight: 700;
    width: 60%;
    line-height: 1.1;
    transition: all 1s;
    transition-delay: .5s;
}

.heading_secondary_title{
    font-size: 30px;
    color: #F6C935;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing:5px;
    transition: all 1s;
    transition-delay: .3s;
}

.about_img{
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0%; 
    width: 21%;
}

/* -- Section -- */

#section-contact{
    background: url(img/contact_bg.png) no-repeat top center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: -50px;
    align-items: center;
}

#section-contact h2{
    text-align: center;
    width: 100%;
}

.section_contact_title{
     font-size: 30px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 40px;
    letter-spacing:5px;   
    text-align: center;
    width: 67%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    line-height: 1.2;
    transition: all 1s;
    transition-delay: .5s;
}

.contact_us_box{
    display: flex;
    margin: 50px auto 0;
    align-items: center;
    width: 70%;
    justify-content: center;
    transition: all 1s;
    transition-delay: .7s;
}

.contact_us_box_heading{
    font-size: 25px;
    color: white;
    font-weight: 500;
    font-family: 'Poppins';
}

.seperator{
    height: 1px;
    background-color: white;
    width: 40%;
    margin: 0 40px;
}

.contact_us_btn{
    padding: 10px 30px;
    color:#1D2B29;
    font-weight: 500;
    font-family: 'Poppins';
    background-color: #F6C935;
    text-decoration: none;
    font-size: 15px;
    position: relative;
       transition: all .2s;
}

.contact_us_btn::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color:#F6C935;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  
}

.contact_us_btn:hover{
    transform: translateY(-4px);
    transition: all .2s;
    box-shadow: 0px 5px 10px rgba(0,0,0, .2); 
}

.contact_us_btn:hover::after{
   transform: scale(1.3);
    opacity: 0;
    z-index: 1;
    transition: all .5s;
}

.main_footer{
    margin-top: 40px;
}

.main_footer_parent{
    padding-bottom: 30px;
    text-align: center;
}

.main_footer_copyrights_text{
    color:#fff;
    font-weight: 500;
    font-family: 'Poppins';
    font-size: 12px;
    text-align: center;
    display: block;
    margin-top: 80px;
}


.hidden{
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-100%);
}

/* -- Keyframes Animation --*/

@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}

@keyframes primaryHeading {
 0%{
    transform: scale(1.3);
     filter: blur(15px);
     opacity: 0;
   }
100%{
    transform: scale(1);
     filter: blur(0);
     opacity: 1;
   }
}




/* -- Products Grid -- */
.products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px auto 30px;
    width: 100%;
}

.product_card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.product_card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(246, 201, 53, 0.15);
    border-color: rgba(246, 201, 53, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.product_img_container {
    height: 220px;
    overflow: hidden;
}

.product_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product_card:hover .product_img_container img {
    transform: scale(1.08);
}

.product_info {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.product_title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product_card:hover .product_title {
    color: #F6C935;
}

.product_link_text {
    color: #F6C935;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.product_link_text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #F6C935;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.product_card:hover .product_link_text::after {
    width: 100%;
}

.footer_links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer_links a {
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.footer_links a:hover {
    color: #F6C935;
}

/* Legal Pages */
.legal_header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(img/contact_bg.png) no-repeat center bottom / cover;
    position: relative;
    padding-top: 100px;
}

.legal_header .heading_secondary {
    width: 100%;
    text-align: center;
    font-size: 60px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.legal_container {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: #ccc;
}

.legal_content {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.legal_content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.legal_content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #F6C935;
}

.legal_content p, .legal_content ul {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #b3b3b3;
}

.legal_content ul {
    padding-left: 25px;
}

.legal_content li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
}

.legal_content li::before {
    content: '•';
    color: #F6C935;
    position: absolute;
    left: -20px;
    font-size: 20px;
    top: -2px;
}

.legal_content a {
    color: #F6C935;
    text-decoration: none;
    transition: opacity 0.3s;
}

.legal_content a:hover {
    opacity: 0.8;
}

@media only screen and (min-width: 1500px){
    #section-contact{
        margin-top: -80px;
    }
 
}
/*

@media only screen and (max-width:1170px){
    .header_Video{
        height: 100%;
        width: auto;
    }
    
}
*/
@media only screen and (max-width:2000px){
    .header_Video{
        height: 100%;
        width: 100%;
    }
    
}

@media only screen and (max-width:768px){
    .main_nav_list{
        display: none;
    }
    .main_nav{
        justify-content: center;
    }
    
    .heading_primary {
        font-size: 38px;
        width: 100%;
        text-align: center;
    }
    
    .hero_box{
         position:static;
        top: 0;
        transform: none;
    }
    
    .hero_box_graphic_element{
        position: static;
        transform: none;
        margin: 40px auto 20px;
        display: block;
    }
    
    .header_Video{
         width: auto;
        height: 100%;
    }
    
    .heading_secondary{
        width: 100%;
        font-size: 35px;
        text-align: center;
    }
    
    .heading_secondary_title{
        text-align: center;
        font-size: 17px;
        letter-spacing: 2px;
        margin-top: 10px;
        display: block;
    }
    
    .section_contact_title{
        font-size: 26px;
        width: 90%;
        letter-spacing: 0px;
    }
    
    .contact_us_box{
        flex-direction: column;
    }
    
    section{
        padding: 60px 0px;
    }
    
  
    
    .seperator{
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
