/*!
Theme Name: Glaze Brooke Coffee
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: glaze-brooke-coffee
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Glaze Brooke Coffee is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Alignments
--------------------------------------------- */
.alignleft {
    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #414141;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    margin-top: 8px !important;
    margin: 0;
	transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    margin: 10px 15px;
    font-size: 1.1rem;
}
.dropdown-menu li a {
    font-size: 1.1rem !important;
}
.dropdown.open .dropdown-menu {
    display: block;
}
.dropdown i {
    font-size: 15px;
}
.dropdown-toggle i {
    margin-left: 5px;
}

.dropdown-menu {
    transition: all 0.3s ease-in-out;
}

@media (max-width: 769px) {
    .dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
	 
    }

    .dropdown {
        display: block;
    }
    .dropdown-menu li {
        position: relative;
        margin: 18px 0px;
        padding-left: 20px;
    }

    .dropdown-menu li::before {
        content: "\f054"; /* Unicode for Font Awesome chevron-right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: #ccc;
    }

    #mainNav ul {
        gap: 15px !important;
        padding-left: 0;
        border: 0;
    }
    .dropdown i {
        display: none;
    }
    .dropdown-toggle i {
        display: none; /* Optional: Hide dropdown arrow on desktop */
    }
}
