@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Root Variables */
:root {
    --primary-bg-color: #f5f5f5;
    --accent-color: #66FF66;
    --hover-accent: #388E3C;
    --text-dark: #333;
    --text-light: #D6EFD8;
    --dark-bg: #111;
    --footer-bg: #333;
    --font-main: "Poppins", serif;
    --font-alt: 'Courier New', Courier, monospace;
    --fade-blue: #e6f7ff;
    --fade-red: #f9e6e6;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav ul li p,
nav ul li i {
    display: none !important;
}

body {
    font-family: var(--font-main);
}

/* Header */
header {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-bottom: 10px;
}

nav {
    margin-top: 10px;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
    background: var(--hover-accent);
    align-items: center;
    list-style: none;
    border-radius: 10px;
}

nav ul li {
    padding: 2px 2px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    background-color: white;
    color: var(--hover-accent);
}

/* Side Navigation */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #D6EFD8;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #FFD1DC;
    /* Petal Pink hover effect */
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

/* FLower.html flower div */


/* Main container styling */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 20px auto;
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Light shadow for a clean effect */
    background-color: #f8f9fa;
    /* Soft background color */
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Input styling */
#search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    background-color: transparent;
    transition: color 0.3s ease;
}

/* Button styling */
#search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background-color: transparent;
    color: #007bff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button hover and active states */
#search-btn:hover {
    background-color: #e9f5ff;
    color: #0056b3;
}

#search-btn:active {
    background-color: #d0ebff;
}

/* Icon styling */
#search-btn i {
    font-size: 18px;
}

/* Focus effect on container */
.search-container:focus-within {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Slightly deeper shadow on focus */
    background-color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 780px) {
    .search-container {
        max-width: 90%;
        padding: 8px 12px;
    }

    #search-input {
        font-size: 14px;
    }

    #search-btn {
        width: 32px;
        height: 32px;
    }

    .flower-item img {
        width: calc(100% - 1rem);
    }

    .flower-item {
        width: calc(50% - 1rem);
        padding: 5px;
    }
}

@media only screen and (max-width: 1130px) {

    nav ul li i,
    nav ul li p {
        display: flex !important;
        font-size: 20px;
    }

    nav ul {
        justify-content: space-between;
    }

    nav ul li a {
        display: none;
    }
}

.chat-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: fixed;
    bottom: 20px;
    /* Adjust the distance from the bottom */
    z-index: 1000;
    /* Ensures the buttons stay on top */
}

.chat-button i {
    font-size: 40px;
}

.whatsapp {
    background-color: #25D366;
    right: 10px;
    /* Positions it closer to the right corner */
}

.whatsapp:hover {
    background-color: #1eae57;
}