/*CSS RESET*/ 
body, header, nav, main, footer, img, video, h1, h2, figure, figcaption, iframe{
    margin: 0;
    padding: 0;
    border: 0;
}
    body {
    	background-color:#fff2f1;
    	font-family: 'Gamja Flower',Arial, sans-serif;
    	font-size: 20px;
    	color:  #bd3f23;
    }
    
    video{
        max-width: 300px;
    }
   
    iframe{
        width: 100%;
    }
    
    #hero-img {
        width: 100%;
    }
    
    /* Mobile Navigation */
    .mobile-nav {
    display: block;
    background-color: #fc9292;
    position: relative;
    padding: 10px;
    }

    .nav-icon {
    display: block;
    cursor: pointer;
    font-size: 2em;
    color: #bd3f23;
    text-decoration: none;
    }

    #icon {
    font-size: 1.5em;
    }
        
    #nav-links {
    display: none;
    background-color: #fc9292;
    margin-top: 10px;
    }

    #nav-links a {
    display: block;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    color: #bd3f23;
    font-size: 1.2em;
    font-weight: bold;
    }

    #nav-links a:hover {
    background-color: lightpink;
    }
    
        /*Media Query: Mobile Style Rule*/
        .mobile {
            display: block;
        }
        
        .desktop,
        .tab-desk {
            display: none;
        }
    
        .video-container {
            width: 100%;
            aspect-ratio: 16/9
        }

       .video-container iframe {
            width: 100%;
            height: 100%;
        }

    /*Style rules header*/
    header {
        background-color: #fff2f1;
        text-align: center;
        margin: 20px 0;
    }
    
    header img{
        max-width: 200px;
        height: auto;
    }
        
    /*general nav*/
    
    nav ul{
        list-style-type: none;
        text-align: center;
        background-color: #fc9292;
        padding: 10px 0;
        
    }
    
    nav li {
        margin: 0px 15px;
    }
    
    nav li a{
        color:#bd3f23;
        font-size: 1em;
        padding: 5px 10px;
        text-decoration:none;
        font-weight: bold;
    }
    
    nav a:hover{
        color: lightpink;
    }
    
     /*Rules for general main*/
    
    main{
        padding: 20px;
        background-color:#FEC4B9;
        text-align: center;
        overflow: auto;
    }
    
     main h1{
        text-align:center;
    }
    
     /*Style rule for figures and figcaption*/
     figure{
        display: block;
        background-color: #fff2f1;
        border-radius: 25px;
    }
    
    figure img{
        max-width: 100%;
        border-radius: 25px;
    }
    
    figcaption{
        text-align: center;
        border-radius: 25px;
        padding: 2%;
        border: 4px solid pink;
    }
    
     /*Style rule for button*/
    button{
        font-size: 1em;
        font-weight: 600;
        font-family: 'Gamja Flower',Arial, sans-serif;
        border-radius: 10px;
        border: none;
        background-color:#bd3f23;
        color: #fff2f1;
        padding: 13px 30px;
        text-transform: uppercase;
    }
    
    button a{
        color: #fff2f1;
        text-decoration: none;
    }
    
    /*Style rule for Section*/
    section{
        background-color: #fcbbc1;
        padding: 20px;
        border-radius: 15px;
        border: 2px solid #bd3f23;
        margin-bottom: 20px;
    }
    
    section p{
        font-size: 1.20em;
        font-family: 'Kiwi Maru';
        font-weight: 250;
    }
    
     /*two boxes at the bottom*/
    .cta-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
   
    .create, .createmainp, .createmaina, .createcoll, .createcom{
        width: 100%;
        max-width: 400px;
        text-align: center;
        border-radius: 25px;
        border: 2px solid #bd3f23;
        margin: 25px 50px 75px;
        background-color: lightpink;
        padding: 20px;
    } 
    
    .createcoll, .createcom {
        margin: 0 auto;
    }
    
   /*style rules for index divs and new arrivals in main*/
    /*product cards*/
    
    .product-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
    } 
    
     .product-card figure {
       display: flex;
       display: block;
       border: 4px #bd3f23;
       box-shadow: 6px 6px 10px #c5a687;
       max-width: 300px;
       padding: 10px;
       margin:2% auto;
    }
    
   
    /*product row in collection*/
    .product-row1 figure, .product-row2 figure, .product-row3 figure{
       display: block;
       flex: 0 0 20em;
       border: 4px #bd3f23;
       box-shadow: 6px 6px 10px #c5a687;
       max-width: 300px;
       padding: 10px;
       margin:2% auto;
    }
    
    
    .product-row1, .product-row2, .product-row3{
        display: flex;
        overflow-x: auto;
        gap: 1em
    }
    
    .product-row1::-webkit-scrollbar, .product-row2::-webkit-scrollbar, .product-row3::-webkit-scrollbar{
        display: none;
    }
    
    /*about us page img*/
    .about-img{
        width: 100%;
        max-width: 500px;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 15px;
    }
    
     
    /*style rules for new Commissions divs on main*/
    /*wrapper with floats*/
    #wrapper{
        overflow: hidden;
        padding: 20px;
    }
    
    #wrapper img{
        width: 100%;
        height: auto;
        margin-right: 2%;
        border-radius: 10px;
    }
    
    /*Form styling*/
    #form label{
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    fieldset{
        border: none;
    } 
    
    legend{
        margin: 0 auto;
    }
    
    input[type=text], input[type=email],  input[type=submit], select {
        width: 100%;
        padding: 12px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid white;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
     /*info box*/
    /*place info box right*/
    #info-box{
        float: none;
        width: 100%;
    }
    
    #submit {
        font-size: 1em;
        font-weight: 600;
        font-family: 'Gamja Flower',Arial, sans-serif;
        background-color:#bd3f23;
        color:#fff2f1;
        padding: 13px 30px;
        text-transform: uppercase;
    }
    
    /*Style rule for table*/
    table {
        border: none;
        width: 100%;
    }
    
    
    /*Style rules for footer*/
    footer {
    	background-color: #ff9a8a;
    }
    
    footer p {
        font-size:0.75em;
        text-align:center;
        color:#bd3f23;
        padding:0 1em;
    }
    
    .contact{
    	text-align: center;
    	color:#bd3f23;
    }
        
    /*Media Query: Tablet Style Rule*/
    @media screen and (min-width: 420px), print{
        
    .tab-desk{
        display: block;
    }
    
    .mobile{
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
 
    /*Tablet Viewport: Style rules for nav area*/
    nav ul{
        list-style-type: none;
        text-align: center;
    }
    
    nav li{
        display: inline-block;
        font-weight: bold;
    }
    
    nav li a{
        padding: 0.5em 1em;
        display: block;
        text-decoration: none;
    }
    
    /*hero-image*/
     #hero-img {
        width: 100%;
    }
    
    .hero-img, .hero-image img{
        width: 100%;
        display: block;
    }
    
    /*Tablet Viewport: Style rule for form element*/
    form{
        width: 70%;
        margin: 0 auto;
    }
    
   
    .product-card {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: auto auto auto;
        gap: 10px;
        
    } 
    
    .cta-container{
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /*product row in collection*/
    .product-row1 figure, .product-row2 figure, .product-row3 figure{
       display: block;
       flex: 0 0 20em;
       border: 4px #bd3f23;
       box-shadow: 6px 6px 10px #c5a687;
       max-width: 300px;
       padding: 10px;
       margin:2% auto;
    }
    
    
    .product-row1, .product-row2, .product-row3{
        display: flex;
        overflow-x: auto;
        gap: 1em
    }
    
    .product-row1::-webkit-scrollbar, .product-row2::-webkit-scrollbar, .product-row3::-webkit-scrollbar{
        display: none;
    }
    
    
    #wrapper img{
        float: left;
        width: 48%;
        margin-right: 2%;
        margin-bottom: 0;
    }
    
    #info-box{
        float:right;
        width: 48%;
    }
    
    .video-container{
        max-width: 800px;
        margin: 0 auto;
    }
}

    /*Media Query: Desktop Style Rule*/
    @media screen and (min-width: 1000px){
        
    /*Desktop Viewport: Show desktop class, hide mobile-tablet class*/
    .desktop{
        display: block;
    }
        
    .mobile{
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
        
    /*Desktop Viewport: Style rules for nav area*/
    nav li{
        font-size: 1.5em;
    }
        
    nav li a{
        padding: 0.5em 1.5em;
    }
        
    /*hero-image*/
    #hero-img {
        width: 100%;
    }
    
    .hero-img, .hero-image img{
        width: 100%;
        display: block;
    }
        
    /*Desktop Viewport: Style rules for main content*/
    .product-card {
        grid-template-columns: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
    }
        
}
    
