/****** General Reset ******/
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/****** Font Import ******/
    @font-face {
        font-family: 'Luckybones';
        src: url('../Assets/Fonts/Luckybones-Bold.otf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

/***********************
    COLOR PALETTE
    Cosmic Purple: #5A1E87
    Deep Space Purple: #2C1241
    Galaxy Glow Pink/Purple: #C468FF
    Off-White: #F7F7F7
    Neutral Gray: #8C8C8C
***********************/

/*** Header ***/
    header {
        background-color: #5A1E87;
        padding: 10px 5px;
        font-family: 'Luckybones', sans-serif;
    }

    .logo {
        background-color: #C468FF;
        border-radius: 90px;
    }

    header nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    header nav img {
        height: 80px;
    }

    header nav h1 {
        font-size: 2rem;
        color: #F7F7F7;
    }

    .nav-links ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: #F7F7F7;
        font-size: 1rem;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #C468FF;
    }

/*** Hero ***/
    .hero {
        background: url('../Assets/Images/herobg.png') center/cover no-repeat;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        background-color: rgba(44, 18, 65, 0.7);
        padding: 3% 5%;
        border-radius: 80px;
        text-align: center;
    }

    .hero-content h2 {
        font-family: 'Luckybones';
        font-size: 2.5rem;
        color: #F7F7F7;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: #F7F7F7;
        margin-bottom: 30px;
    }

/*** Buttons ***/
    .btn {
        background-color: #C468FF;
        color: #F7F7F7;
        padding: 15px 30px;
        border-radius: 50px;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .btn a {
        text-decoration: none;
        color: inherit;
        font-family: 'Luckybones';
    }

    .btn:hover {
        background-color: #5A1E87;
    }

/*** OUR MUSHROOMS (DARK SECTION) ***/
    .our-mushrooms {
        background-color: #2C1241;
        padding: 80px 50px;
        display: flex;
        gap: 50px;
        align-items: center;
        color: #F7F7F7;
    }

    /* Left column */
    .mushroom-list {
        width: 55%;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Clickable mushroom cards */
    .mushroom-row {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 30px;
        border-radius: 20px;
        text-decoration: none;
        color: #F7F7F7;
        background-color: rgba(90, 30, 135, 0.35);
        transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    }

    .mushroom-row:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        background-color: rgba(90, 30, 135, 0.55);
    }

    /* Alternating row direction */
    .mushroom-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    /* Image */
    .mushroom-image {
        width: 180px;
        height: 120px;
        background-color: #2C1241;
        border-radius: 15px;
        flex-shrink: 0;
    }

    .mushroom-image img, 
    .column_image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        display: block;
    }

    /* Title alignment */
    .mushroom-info {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .mushroom-row:nth-child(even) .mushroom-info {
        margin-left: 0;
        margin-right: auto;
    }

    .mushroom-info h3 {
        font-family: 'Luckybones';
        font-size: 1.5rem;
    }

    /* Right column */
    .our-mushroom-content {
        width: 45%;
    }

    .our-mushroom-content h2 {
        font-family: 'Luckybones';
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .our-mushroom-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

/*** HOW TO ORDER (LIGHT SECTION) ***/
    .how-to-order-section {
        background-color: #5A1E87;
        padding: 80px 50px;
    }

    .how-to-order-title {
        font-family: 'Luckybones';
        font-size: 2.5rem;
        color: #F7F7F7;
        text-align: center;
        margin-bottom: 50px;
    }

    .how-to-order-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .order-card {
        background-color: rgba(44, 18, 65, 0.9);
        padding: 50px 30px;
        border-radius: 25px;
        text-align: center;
        text-decoration: none;
        color: #F7F7F7;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .order-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    .order-card h3 {
        font-family: 'Luckybones';
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .order-card p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .order-image {
        width: 180px;
        height: 180px;
        object-fit: contain;
        display: block;
        margin: 0 auto 20px;
    }

/*** POP-UP SECTION ***/
    .pop-up-section {
        background-color: #2C1241;
        padding: 50px 30px;
        display: flex;
        justify-content: center;
    }

    /*** POP-UP CARD ***/
    .pop-up-card {
        background-color: rgba(90, 30, 135, 0.85);
        max-width: 800px;
        width: 100%;
        padding: 40px 35px;
        border-radius: 25px;
        text-align: center;
        color: #F7F7F7;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    /*** POP-UP IMAGE ***/
    .pop-up-image {
        width: 220px;
        height: auto;
        object-fit: contain;
        margin-bottom: 30px;
    }

    /*** POP-UP TEXT ***/
    .pop-up-card h2 {
        font-family: 'Luckybones';
        font-size: 2.1rem;
        margin-bottom: 20px;
    }

    .pop-up-description {
        font-size: 1.1rem;
        line-height: 1.55;
        margin-bottom: 15px;
    }

    .pop-up-note {
        font-size: 0.95rem;
        color: #C468FF;
        margin-bottom: 25px;
    }

    /*** POP-UP BUTTONS ***/
    .pop-up-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Pop-up Section Buttons Hover */
    .pop-up-section .btn:hover {
        background-color: #FFB6FF; /* lighter pink/purple glow */
        color: #2C1241; /* dark text for readability */
    }

    .btn.secondary {
        background-color: transparent;
        border: 2px solid #C468FF;
    }

    .btn.secondary:hover {
        background-color: #C468FF;
        color: #2C1241;
    }

/*** PRICE TABLE SECTION (LIGHT SECTION) ***/
    .price-table-section {
        background-color: #5A1E87;
        padding: 80px 50px;
        color: #F7F7F7;
        text-align: center;
    }

    .price-table-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .price-section-title {
        font-family: 'Luckybones';
        font-size: 3rem;
        text-align: center;
        margin-bottom: 50px;
        color: #F7F7F7;
    }

    .price-section-note {
        font-size: 1rem;
        color: #F7F7F7;
        margin-bottom: 50px;
    }

    /*** PRICE CARDS ***/
    .price-table {
        background-color: rgba(44, 18, 65, 0.9);
        padding: 40px 35px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .price-table:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
    }

    /*** PRICE CARD HEADINGS ***/
    .price-table h3 {
        font-family: 'Luckybones';
        font-size: 1.9rem;
        margin-bottom: 25px;
        color: #F7F7F7;
    }

    /*** PRICE LIST ***/
    .price-table ul {
        list-style: none;
        padding: 0;
    }

    .price-table li {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    /*** WHOLESALE TEXT ***/
    .price-details {
        font-size: .95rem;
        line-height: 1.5;
        margin-top: 10px;
        color: #F7F7F7;
        margin-bottom: 10px;
    }

    .price-details .muted {
        font-size: 0.85rem;
        color: #F7F7F7;
    }


    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.15rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(196, 104, 255, 0.2);
    }

    .price-row:last-of-type {
        border-bottom: none;
    }

    .price {
        font-family: 'Luckybones';
        font-size: 1.4rem;
        color: #C468FF;
    }

    .price-divider {
        height: 1px;
        background-color: rgba(196, 104, 255, 0.35);
        margin: 20px 0;
    }

    /*** WHOLESALE (PROFESSIONAL STYLE) ***/
    .price-table.wholesale {
        text-align: left;
    }

    /* Divider line */
    .wholesale-divider {
        height: 1px;
        width: 100%;
        background-color: rgba(196, 104, 255, 0.4);
        margin: 25px 0 20px;
    }

    /* CTA link (not a button) */
    .wholesale-link {
        display: inline-block;
        font-size: 1.05rem;
        font-family: 'Luckybones';
        color: #C468FF;
        text-decoration: none;
        transition: color 0.3s;
    }

    .wholesale-link:hover {
        color: #FFB6FF;
    }

/*** ABOUT US (DARK SECTION) ***/
    .about-us {
        background-color: #2C1241;
        padding: 80px 50px;
        display: flex;
        justify-content: space-between;
        color: #F7F7F7;
    }

    .about-us-content {
        width: 45%;
    }

    .about-us-content h2 {
        font-family: 'Luckybones';
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-us-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .about-us-image {
        width: 45%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-us-image img {
        width: 45%;
        border-radius: 15px;
    }

/*** FOOTER / CONTACT SECTION ***/
    .site-footer {
        background: linear-gradient(
            to bottom,
            #241032,
            #1B0A26
        );
        color: #F7F7F7;
        padding: 80px 50px 30px;
        border-top: 2px solid rgba(196, 104, 255, 0.35);
    }

    /* Main layout */
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    /* Brand */
    .footer-brand img {
        width: 90px;
        margin-bottom: 15px;
    }

    .footer-brand h3 {
        font-family: 'Luckybones';
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #E0D6F0;
    }

    /* Section titles */
    .site-footer h4 {
        font-family: 'Luckybones';
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #C468FF;
    }

    /* Contact info */
    .footer-contact p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-contact a {
        color: #F7F7F7;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-contact a:hover {
        color: #C468FF;
    }

    /* Footer nav */
    .footer-nav ul {
        list-style: none;
        padding: 0;
    }

    .footer-nav li {
        margin-bottom: 10px;
    }

    .footer-nav a {
        text-decoration: none;
        color: #F7F7F7;
        font-size: 1rem;
        transition: color 0.3s;
    }

    .footer-nav a:hover {
        color: #C468FF;
    }

    /* Bottom bar */
    .footer-bottom {
        margin-top: 50px;
        padding-top: 20px;
        border-top: 1px solid rgba(196, 104, 255, 0.3);
        text-align: center;
        font-size: 0.85rem;
        color: #CBB7E5;
    }


/******** MOBILE RESPONSIVE ********/
@media (max-width: 1024px) {
    /* Header Nav becomes stacked */
    header nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-content {
        padding: 5% 10%;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Our Mushrooms Section stacks */
    .our-mushrooms {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .mushroom-list,
    .our-mushroom-content {
        width: 100%;
    }

    .mushroom-row {
        flex-direction: column !important;
        text-align: center;
    }

    .mushroom-info {
        margin: 10px 0 0 0 !important;
    }

    .our-mushroom-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .our-mushroom-content p {
        text-align: center;
        font-size: 1rem;
    }

    /* How to order section stacks */
    .how-to-order-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-card {
        padding: 30px 20px;
    }

    .order-card h3 {
        font-size: 1.5rem;
    }

    .order-card p {
        font-size: 1rem;
    }

    .order-image {
        width: 140px;
        height: 140px;
    }

    /* Pop-up Section */
    .pop-up-card {
        padding: 30px 20px;
    }

    .pop-up-card h2 {
        font-size: 1.8rem;
    }

    .pop-up-description,
    .pop-up-note {
        font-size: 1rem;
    }

    .pop-up-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Price Table Section */
    .price-table-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-table h3 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.2rem;
    }

    /* About Us Section */
    .about-us {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .about-us-content,
    .about-us-image {
        width: 100%;
    }

    .about-us-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-us-content p {
        font-size: 1rem;
        text-align: center;
    }

    .about-us-image {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand,
    .footer-contact,
    .footer-nav {
        text-align: center;
    }

    .footer-contact p,
    .footer-nav li {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile tweaks */
    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .price-table h3 {
        font-size: 1.4rem;
    }

    .about-us-image {
        grid-template-columns: 1fr;
    }

    .order-image {
        width: 120px;
        height: 120px;
    }
}

/* Hide the toggle by default */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #F7F7F7;
    cursor: pointer;
}

/* === MOBILE HAMBURGER HEADER === */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #F7F7F7;
    cursor: pointer;
}

@media (max-width: 768px) {
    header nav {
        position: relative;
    }

    .menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background-color: #5A1E87;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease-in-out;
        border-radius: 0 0 15px 15px;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 99;
    }

    .menu.active {
        max-height: 500px;
    }

    .menu li {
        padding: 15px 20px;
        border-top: 1px solid rgba(196, 104, 255, 0.3);
    }

    .menu li:first-child {
        border-top: none;
    }

    .menu li a {
        font-size: 1.2rem;
        color: #F7F7F7;
        text-decoration: none;
    }

    .menu li a:hover {
        color: #C468FF;
    }

    .menu-toggle {
        display: block;
    }
}