/* Fonts in use */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400&family=Ubuntu:wght@700&display=swap');



/* Add this to your CSS */




/* Base Styles */
body {
    
    background-color: #FEFFFF; /* Full white background */
    color: #FEFFFF; /* Dark text color for readability */
}

/* Navbar */
.navbar {
    background-image: url('/static/images/bg-white.png'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire navbar */
    background-position: center; /* Centers the image in the navbar */
    
}

.navbar-nav .nav-link {
    
    font-weight: 600;
    color: #17252A !important; /* Dark text color for links */
    font-size: 16px;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.navbar-nav .nav-link:hover {
    color: #3AAFA9 !important; /* Change color on hover */
}

.navbar-brand img {
    height: 40px;
}

/* Buttons */
.btn-primary {
    background-color: #3AAFA9; /* Button background */
    border-color: #3AAFA9;
    color: #FEFFFF; /* White text on buttons */
}

.btn-primary:hover {
    background-color: #2B7A78; /* Darker shade for hover */
    border-color: #2B7A78;
}

/* Custom Styles */
.navbar-nav {
    flex-direction: row; /* Align items in a row */
}

.navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-toggler {
    border-color: #17252A; /* Dark border for the toggler on small screens */
    background-color: #2B7A78; /* Dark border for the toggler on small screens */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(23, 37, 42, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
    width: 24px; /* Adjust size if necessary */
    height: 24px;
}

/* Optional: Footer Styles */
.footer {
    background-color: #FEFFFF; /* Full white footer */
    color: #17252A; /* Dark text color */
    padding: 20px 0;
    border-top: 1px solid #3AAFA9; /* Optional: Add a border to distinguish the footer */
}

.footer a {
    color: #17252A;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.footer a:hover {
    color: #2B7A78; /* Change color on hover */
}

/* Banner Section */
.banner-section {
     /* Updated with your banner image path */
    background-size: cover;
    background-position: top;
    height: 95vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    padding-left: 50px; /* Add padding to move content away from the edge */
    position: relative;
    color: #17252A;
}

.banner-content {
    text-align: left; /* Align text to the left */
    animation: fadeIn 2s ease-in-out; /* Text fade-in animation */
    
}

.banner-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: slideInFromBottom 1.5s ease-out forwards; /* Title animation from bottom */
}

.banner-title .highlight {
    color: #2B7A78; /* Color for "Magic Mushrooms" */
}

.banner-subtitle {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 24px;
    margin-bottom: 40px;
    animation: slideInFromTop 1.5s ease-out forwards; /* Subtitle animation from top */
}



/* Button */
.btn-primary {
    background-color: #FFFFFF;
    border: 2px solid #F5FEFD;
    color: #2B7A78;
    padding: 1em 2em; /* Adjust padding as needed */
    border-radius: 12px; /* Adjust border-radius for neumorphism effect */
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.7), /* Light shadow on top-left */
        8px 8px 15px rgba(0, 0, 0, 0.1); /* Dark shadow on bottom-right */
    animation: fadeIn 2s ease-in-out; /* Fade-in animation */
}

.btn-primary:focus {
    background-image: none;
    outline: 0;
    box-shadow: none;
   
}

.btn-primary:hover {
    background-color: #FEFFFF;
    border-color: #F5FEFD;
    color: #3AAFA9;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.6), /* Light shadow on top-left */
        4px 4px 10px rgba(0, 0, 0, 0.2); /* Dark shadow on bottom-right */
}
.btn-primary:active {
    background-image: none!important;
    outline: 0!important;
    box-shadow: none!important; 
    background-color: #FEFFFF !important; /* Force red background on click */
    border-color: #F5FEFD !important; /* Optional: match the border color */
    color: #3AAFA9 !important; /* Force white text color */
    box-shadow: inset -4px -4px 6px rgba(255, 255, 255, 0.7),
                inset 4px 4px 6px rgba(0, 0, 0, 0.1)!important; /* Optional: change shadow for a "pressed" effect */
}



@keyframes slideInFromBottom {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromTop {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}


/* About Us Section */
.about-section {
    padding-top: 140px; /* Adjust based on your navbar height */
    margin-top: -140px; 
    background-color: #FEFFFF; /* Light background color */
}

.about-text {
    animation: fadeInLeft 1s ease-out; /* Text fade-in from the left */
}

.about-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700; /* Bold title */
    color: #17252A;
    margin-bottom: 20px;
}

.about-description {
    font-family:'Nanum Gothic', sans-serif;
    font-size: 18px;
    color: #17252A;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 8px; /* Rounded corners for the image */
    animation: zoomIn 1s ease-out; /* Image zoom-in animation */
}

/* Button */
.btn-primary {
    background-color: #FFFFFF;
    border: 2px solid #F5FEFD;
    color: #2B7A78;
    padding: 1em 2em; /* Adjust padding as needed */
    border-radius: 12px; /* Adjust border-radius for neumorphism effect */
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.7), /* Light shadow on top-left */
        8px 8px 15px rgba(0, 0, 0, 0.1); /* Dark shadow on bottom-right */
    animation: fadeIn 2s ease-in-out; /* Fade-in animation */
}

.btn-primary:hover {
    background-color: #FEFFFF;
    border-color: #F5FEFD;
    color: #3AAFA9;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.6), /* Light shadow on top-left */
        4px 4px 10px rgba(0, 0, 0, 0.2); /* Dark shadow on bottom-right */
}
.btn-primary:active {
    background-image: none!important;
    outline: 0!important;
    box-shadow: none!important; 
    background-color: #FEFFFF !important; /* Force red background on click */
    border-color: #F5FEFD !important; /* Optional: match the border color */
    color: #3AAFA9 !important; /* Force white text color */
    box-shadow: inset -4px -4px 6px rgba(255, 255, 255, 0.7),
                inset 4px 4px 6px rgba(0, 0, 0, 0.1)!important; /* Optional: change shadow for a "pressed" effect */
}

/* Animations */
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Health Benefits Section */
.health-benefits-section {
    padding: 60px 0;
    background-color: #FEFFFF; /* Light background color */
    text-align: center; /* Center all text */
}

.health-benefits-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700; /* Bold title */
    color: #17252A;
    margin-bottom: 20px;
/* Apply animation */
}

.health-benefits-description {
    font-family:'Nanum Gothic', sans-serif;
    font-size: 18px;
    color: #17252A;
    margin-bottom: 30px;
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start position */
    animation: fadeInUp 1.5s ease-out forwards; /* Apply animation with delay */
}

.health-benefits-image img {
    width: 100%; /* Adjust image width as needed */
    border-radius: 8px; /* Rounded corners for the image */
    animation: zoomIn 1s ease-out; /* Image zoom-in animation */
    display: block;
    margin: 0 auto; /* Center the image */
}

/* Button */
.btn-primary {
    background-color: #FFFFFF;
    border: 2px solid #F5FEFD;
    color: #2B7A78;
    padding: 1em 2em; /* Adjust padding as needed */
    border-radius: 12px; /* Adjust border-radius for neumorphism effect */
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.7), /* Light shadow on top-left */
        8px 8px 15px rgba(0, 0, 0, 0.1); /* Dark shadow on bottom-right */
    animation: fadeIn 2s ease-in-out; /* Fade-in animation */
}

.btn-primary:hover {
    background-color: #FEFFFF;
    border-color: #F5FEFD;
    color: #3AAFA9;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.6), /* Light shadow on top-left */
        4px 4px 10px rgba(0, 0, 0, 0.2); /* Dark shadow on bottom-right */
}
.btn-primary:active {
    background-image: none!important;
    outline: 0!important;
    box-shadow: none!important; 
    background-color: #FEFFFF !important; /* Force red background on click */
    border-color: #F5FEFD !important; /* Optional: match the border color */
    color: #3AAFA9 !important; /* Force white text color */
    box-shadow: inset -4px -4px 6px rgba(255, 255, 255, 0.7),
                inset 4px 4px 6px rgba(0, 0, 0, 0.1)!important; /* Optional: change shadow for a "pressed" effect */
}





/* Remove underline from links styled as buttons */
a.btn-primary {
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}
/* Health Benefits Section page */
.benefit-card {
    background-color: #FEFFFF; /* Light background color for recipe cards */
    border-radius: 8px; /* Rounded corners for the card */
    padding: 20px;
    margin: 0px; /* Add a small space around all sides of the card */
    width: calc(33.333% - 4px); /* Adjust width to fit three cards per row with a 2px margin */
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start position */
    animation: fadeInUp 2s ease-out forwards; /* Apply animation with delay */
}

.benefit-card img {
    width: 100%;
    border-radius: 8px; /* Rounded corners for the image */
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700; /* Bold title */
    color: #17252A;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 16px;
    color: #17252A;
    margin-bottom: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.benefit-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
    display: block;
}
.health-benefits-card {
    background-color: #FEFFFF; /* Light background color for recipe cards */
    border-radius: 8px; /* Rounded corners for the card */
    padding: 20px;
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start position */
    animation: fadeInUp 2s ease-out forwards; /* Apply animation with delay */
}

.health-benefits-image img {
    width: 60%;
    border-radius: 8px; /* Rounded corners for the image */
    margin-bottom: 15px;
}

.health-benefits-title {
    font-size: 24px;
    font-weight: 700; /* Bold title */
    color: #17252A;
    margin-bottom: 10px;
}

.health-benefits-description {
    font-size: 16px;
    color: #17252A;
    margin-bottom: 20px;
}



@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Recipes Section */
.recipes-section {
    padding: 60px 0;
    background-color: #FEFFFF; /* Base color for the section */
    text-align: center;
}

.recipes-title {
    font-family:'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700; /* Bold title */
    color: #17252A;
    margin-bottom: 20px;
}

.recipes-description {
    font-family:'Nanum Gothic', sans-serif;
    font-size: 18px;
    color: #17252A;
    margin-bottom: 30px;
}

.recipe-card {
    background-color: #FEFFFF; /* Light background color for recipe cards */
    border-radius: 8px; /* Rounded corners for the card */
    padding: 20px;
    margin: 0px; /* Add a small space around all sides of the card */
    width: calc(33.333% - 4px); /* Adjust width to fit three cards per row with a 2px margin */
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start position */
    animation: fadeInUp 2s ease-out forwards; /* Apply animation with delay */
}

.recipe-image img {
    width: 100%;
    border-radius: 8px; /* Rounded corners for the image */
    margin-bottom: 15px;
}

.recipe-title {
    font-family:'Ubuntu', sans-serif;
    font-size: 24px;
    font-weight: 700; /* Bold title */
    color: #17252A;
    margin-bottom: 10px;
}

.recipe-description {
    font-family:'Nanum Gothic', sans-serif;
    font-size: 16px;
    color: #17252A;
    margin-bottom: 20px;
}


/* Button */
.btn-primary {
    background-color: #FFFFFF;
    border: 2px solid #F5FEFD;
    color: #2B7A78;
    padding: 1em 2em; /* Adjust padding as needed */
    border-radius: 12px; /* Adjust border-radius for neumorphism effect */
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.7), /* Light shadow on top-left */
        8px 8px 15px rgba(0, 0, 0, 0.1); /* Dark shadow on bottom-right */
    animation: fadeIn 2s ease-in-out; /* Fade-in animation */
}

.btn-primary:hover {
    background-color: #FEFFFF;
    border-color: #F5FEFD;
    color: #3AAFA9;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.6), /* Light shadow on top-left */
        4px 4px 10px rgba(0, 0, 0, 0.2); /* Dark shadow on bottom-right */
}
.btn-primary:active {
    background-image: none!important;
    outline: 0!important;
    box-shadow: none!important; 
    background-color: #FEFFFF !important; /* Force red background on click */
    border-color: #F5FEFD !important; /* Optional: match the border color */
    color: #3AAFA9 !important; /* Force white text color */
    box-shadow: inset -4px -4px 6px rgba(255, 255, 255, 0.7),
                inset 4px 4px 6px rgba(0, 0, 0, 0.1)!important; /* Optional: change shadow for a "pressed" effect */
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #FEFFFF; /* Base color */
}

.contact-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #17252A; /* Dark color */
    margin-bottom: 20px;
}

.contact-description {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 18px;
    color: #17252A;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #FEFFFF; /* Light background color for the form */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border-radius: 4px;
    margin-bottom: 20px;
}

.contact-form .btn-primary {
    background-color: #3AAFA9;
    border-color: #3AAFA9;
    color: #FEFFFF;
    width: 100%; /* Full width button */
}

.contact-form .btn-primary:hover {
    background-color: #2B7A78; 
    border-color: #2B7A78;
}

.contact-info {
    background-color: #FEFFFF; /* Light background color for contact info */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info .info-title {
    font-size: 24px;
    font-weight: 700;
    color: #17252A;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #17252A;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 30px;
    color: #17252A;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3AAFA9;
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.contact-section {
    animation: fadeInUp 2s ease-out;
}


/* Footer Section */
.footer-section {
    background-color: #17252A; /* Dark background color */
    padding: 60px 0;
    color: #FEFFFF; /* White color for text and icons */
}

.footer-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-section .social-icon {
    color: #FEFFFF; /* White color for icons */
    font-size: 24px;
    transition: color 0.3s;
}

.footer-section .social-icon:hover {
    color: #3AAFA9; /* Highlight color on hover */
}
.footer-links {
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 10px 0;
}

.footer-links li {
    display: inline;
    text-decoration: none !important;
    margin: 0 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none !important;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: none; /* Ensures no underline on hover */
    color: #1da1f2; /* Optional: Change color on hover */
}


/* Ensure smoothness */
.aos-animate {
    transition: all 1.2s ease-in-out;
}

/* Example animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Button */
.btn-primary-submit {
    background-color: #FFFFFF;
    border: 2px solid #F5FEFD;
    color: #2B7A78;
    padding: 1em 2em; /* Adjust padding as needed */
    border-radius: 12px; /* Adjust border-radius for neumorphism effect */
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 
        -8px -8px 15px rgba(255, 255, 255, 0.7), /* Light shadow on top-left */
        8px 8px 15px rgba(0, 0, 0, 0.1); /* Dark shadow on bottom-right */
    animation: fadeIn 2s ease-in-out; /* Fade-in animation */
}

.btn-primary-submit:hover {
    background-color: #FEFFFF;
    border-color: #F5FEFD;
    color: #3AAFA9;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.6), /* Light shadow on top-left */
        4px 4px 10px rgba(0, 0, 0, 0.2); /* Dark shadow on bottom-right */
}


.btn-primary-submit:active {
    background-image: none!important;
    outline: 0!important;
    box-shadow: none!important; 
    background-color: #FEFFFF !important; /* Force red background on click */
    border-color: #F5FEFD !important; /* Optional: match the border color */
    color: #3AAFA9 !important; /* Force white text color */
    box-shadow: inset -4px -4px 6px rgba(255, 255, 255, 0.7),
                inset 4px 4px 6px rgba(0, 0, 0, 0.1)!important; /* Optional: change shadow for a "pressed" effect */
}

/* Keyframes for fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.whatsapp-button {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 9999;
}

.card-container {
    display: flex;
    justify-content: space-between; /* Space evenly between cards */
    gap: 20px; /* Add spacing between cards */
    padding: 20px;
  }
  
  .card {
    flex: 1; /* Each card takes equal space */
    max-width: 300px; /* Optional: Set a maximum width for the cards */
    padding: 20px;
    background-color: #f9f9f9; /* Light background for the card */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px); /* Adds a hover effect */
  }
  
  .icon img {
    width: 60px; /* Set the width of the icon */
    height: 60px; /* Set the height of the icon */
    margin-bottom: 15px;
  }
  
  .card-title {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333;
  }
  
  .card-description {
    font-size: 1rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .card-container {
      flex-direction: column; /* Stack cards vertically for smaller screens */
      align-items: center; /* Center the cards */
    }
  
    .card {
      max-width: 100%; /* Cards take full width on small screens */
    }
  }
  
  