* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 2;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    z-index: 10;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    background-color: #33333394;
}
.button-link{
    background-color: #ff6347;
    padding: 10px 20px;
   border-radius: 7px;
}

.button-link:hover {
    background-color: #fa4525; 
    color: black; 
    transform: scale(1.1); 
}
#navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: end;
    font-size: 1.2rem;
}

#navbar ul li {
    margin: 0 25px;
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    gap: 8px;
    transition: color 0.3s;
}

#navbar.scrolled {
    background-color: rgba(51, 51, 51, 0.9);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

#navbar ul li a:hover {
    color: C;
}

.full-screen-hero {
    position: relative;
    height: 100vh;
    background: url('./aydin-ghadakchi-lamor-1BBlGVr2_Yw-unsplash.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-screen-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    text-shadow: #ff6347;
}

.shop-now-btn {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 10px;
}
.shop-now-btn:hover {
    background-color: #fa4525; 
    color: black; 
    transform: scale(1.1); 
}
.product-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.product-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px;
    padding: 10px;
}

.product-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 10px 15px;
    background-color: #fff;
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 1rem;
    color: #777;
    line-height: 1.5;
}

.product-info h3, .product-info p {
    margin: 0;
}

.product-item:hover .product-info h3 {
    color: #ff6347; 
}


.quick-view {
    background-color: #ff6347;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.sticky-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6347;
    padding: 15px 25px;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
}

.story-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 30px;
    background-color: #f9f9f9;
    color: white;
    text-align: left;
    background-image: url('./our\ story.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-content {
    width: 50%;
    padding-right: 20px;
}

.story-image img {
    width: 600px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .story-section {
        flex-direction: column;
        text-align: center;
    }
    
    .story-content {
        width: 100%;
        padding-right: 0;
    }
    
    .story-image img {
        max-width: 100%;
    }
}
.contactus{
    background-image: url('./contact\ us.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0px;
   margin-top: 40px;
}

.container {
    max-width: 600px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: white;
    margin-left: 50px;
}

h1 {
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.response-message {
    margin-top: 15px;
    font-size: 1.2em;
    text-align: center;
}
.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
}

.copyright {
    background-color: #ccc;
    font-family:cursive;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
}


