/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
}
.logo1:hover {
    transform: scale(1.50);
}

.card-body{
   
    border-style: none;
}



.container1 {
   display: flex;
   background-image: url('./image/10.jpg');
   width: 100%;
   height: 100vh;
   background-size:cover;
   justify-content: center;
   align-items: center;
   margin: 0%;

}
.logoname{
    color: white;
    font-size: 20px;

    text-align: center;
    border: 2px solid white;
    padding: 10px 40px;
   
      
}

.productheading{
    text-align: center;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.25);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-name {
    padding: 1rem;
    text-align: center;
    font-size: 1.25rem;
}

.product-size {
    text-align: center;
    color: #666;
    padding-bottom: 1rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-color:white;
    
    
}


/*collection */


.carousel-item {
    
    height: 20rem;
    background: black;
}

.carousel-1 {
    background: url(./image/home1.jpg) no-repeat center center/cover;
}
.carousel-2 {
    background: url(./image/mat24.jpeg) no-repeat center center/cover;
}
.carousel-3 {
    background: url(./image/6.jpg) no-repeat center center/cover;
}
.carousel-4 {
    background: url(./image/15.jpg) no-repeat center center/cover;
}
.carousel-5 {
    background: url(./image/9.jpg) no-repeat center center/cover;
}
.carousel-6 {
    background: url(./image/12.jpg) no-repeat center center/cover;
}


#collection {
    text-align: center;
   
}




/* About Page */
.about-section {
    padding: 0rem 0 4rem;
}

.about-content {
    display: grid;
    grid-template-columns:  1fr;
    gap: em;
    
    align-items: center;
}

.about-text {
    color: #666;
}

.about-text h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.about-text p {
   font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: .90rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #614d36c7;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition:  0.3s;
}

.submit-btn:hover {
    background: #0a09098b;
}











/* Navbar Styles */
.navbar1 {
    background-color: white;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}





/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    flex: 2;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #a2a2a2;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #637746;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

/* Right Navigation Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}



@keyframes appear {
    from {
        opacity:0;
        scale:0.5;
    }
    to {
        opacity: 1;
        scale:1;
    }
}
.main,.footer-grid {
    animation: appear  linear;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
}

/* Footer */
.footer {
    background: #f9fafb;
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 20px;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #333;
}
.product-size {
    font-family:'Courier New', Courier, monospace
}

.alert {
    display: none;
}






/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 50px;
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    .container1 {
        display: flex;
        background-image: url('./image/10.jpg');
        border: 4px solid white;
        
        width: 100%;
        height: 40vh;
        padding: 20px;
       
    }
    .logoname{
        color: white;
        font-size: 13px;
   
       
          
    }

    .footer {
        background: #f9fafb;
        padding: 4rem 0;
        margin-top: 1rem;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
        padding: 20px;
    }
    
    .footer h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .contact-info{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info p {
        font-size: 10px;
        color: #666;
        margin-bottom: 0.3rem;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
    }
    
    .social-links a {
        color: #797979;
        text-decoration: none;
        font-size: 1.25rem;
        transition: color 0.3s;
    }
    
    .social-links a:hover {
        color: #282727;
    }
}


/* Rest of the CSS remains the same, but update the mobile menu styles: */
@media screen and (max-width: 509px) {
    .navbar-container {
        padding: 15px 20px;
    }
    
    .container1 {
        display: flex;
        background-image: url('./image/10.jpg') ;
        background-position: 100%;
        width: 100%;
        height: 30vh;
        padding: 20px;
        justify-content: center;
        
    }
    .logoname{
        color: white;
        font-size: 11px;
        border: 1.5px solid white;
        padding: 2px;

    }

    .logoname p{
        padding: 2px;
    }
    .submit-btn {
        background: #614d36c7;
        color: white;
        padding: 0.2rem 1rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition:  0.3s;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 1;
        cursor: pointer;
        z-index: 101;
    }
    
  
    
    .nav-right {
        order: 3;
    }
    
    .nav-links {
        position: fixed;
        flex-direction: column;
        background-color: white;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: all 0.3s ease;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    .nav-links.active {
        left: 0;
    }

    
    
    .login-text {
        display: none;
    }
     .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 0rem 0 4rem;
    }
    
    .about-content {
        display: grid;
        grid-template-columns:  1fr;
        gap: 2em;
        
        align-items: center;
    }

  

    .about-image {
        order: -1;
    }
    .hero-image {
        width: 60%;
        height: 60%;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }
    
    

}
