html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #FDF6F0;
    color: #5D4037;
    overflow-x: hidden;
}

header {
    background-color: #82618f;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #FFFFFF;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #F5E6E8;
}

.hero {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(100, 100, 100, 0.3)), url('saffron.jpg') no-repeat center center/cover;
    color: white;
    position: relative;
}

.hero h1 {
    font-family: 'Allura', fantasy;
    font-size: 5rem;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.10);
    padding: 0;
    border: 0;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    margin: 1.5rem 0;
    font-size: 1.4rem;
    line-height: 1.8;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero button {
    background-color: #915E63;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero button:hover {
    background-color: #7A4E53;
    transform: scale(1.05);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 4rem 2rem;
    background-color: #FAF5F2;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.product-card h3 {
    margin: 1.5rem 0 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.7rem;
    color: #5D4037;
}

.product-card p {
    color: #915E63;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0.5rem 0 1.5rem;
}

.product-card button {
    background-color: #915E63;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 1.5rem;
}

.product-card button:hover {
    background-color: #7A4E53;
    transform: scale(1.05);
}

footer {
    background-color: #5D4037;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 3rem;
    font-size: 1rem;
    position: relative;
}

footer p {
    margin: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    background-color: #915E63;
    border-radius: 2px;
}

.about {
    padding: 2rem 2rem;
    /* More padding for a spacious feel */
    background-color: #FDF6F0;
    /* Light background for contrast */
    color: #5D4037;
    /* Consistent text color */
    text-align: center;
   /* border-top: 2px solid #915E63;*/
    /* Adds a subtle divider */
   /* border-bottom: 2px solid #915E63;*/
    position: relative;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    /* Larger font for better hierarchy */
    margin-bottom: 1.5rem;
    color: #915E63;
    /* Highlight heading with an accent color */
    position: relative;
    font-weight: 500;
}

.about h2::after {
    content: '';
    display: block;
    width: 100px;
    /* Longer underline for emphasis */
    background-color: #5D4037;
    /* Darker accent for contrast */
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about p {
    color: #5D4037;
    /* Matches the text with the overall color palette */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 200;
    max-width: 900px; /* Set a maximum width for readability */
    margin-left: auto;
    margin-right: auto;
}

.about p:last-of-type {
    margin-bottom: 0;
    /* Removes extra margin from the last paragraph */
}

.about a {
    display: inline-block;
    /* Makes links stand out */
    margin-top: 1rem;
    color: #915E63;
    /* Accent color for links */
    font-weight: 300;
    transition: color 0.3s ease;
}

.about a:hover {
    color: #7A4E53;
    /* Slightly darker on hover */
}

.why-asmira {
    padding: 2rem;
    background-color: #FAF5F2; /* Light contrasting background */
    color: #5D4037; /* Consistent text color with other sections */
    text-align: center;
}

.why-asmira h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    /*margin-bottom: 1rem;*/
    color: #915E63;
    position: relative;
}

.why-asmira h2::after {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #5D4037;
    margin: 0.5rem auto 1.5rem;
    border-radius: 2px;
}

.why-asmira ol {
    list-style: decimal inside;
    text-align: left;
    margin: 0 auto;
    padding: 0;
    max-width: 900px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.why-asmira ol li {
    margin-bottom: 1rem;
    color: #5D4037;
    font-weight: 300;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    filter: brightness(0) invert(1); /* Converts the logo to white */
    transition: filter 0.3s ease; /* Adds a smooth transition effect */
    margin-bottom: 2px;
}

.hero-logo:hover {
    filter: brightness(0.8) invert(1); /* Slightly dims the logo on hover */
}

