/*
Theme Name: Anderson Theme
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme built with Tailwind CSS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anderson-theme
*/

/* Custom Navigation Bar Styles */
.site-container {
    transition: padding-top 0.3s ease-in-out;
}

.main-nav {
    transition: padding 0.3s ease-in-out, background-color 0.3s ease-in-out;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.main-nav.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-logo {
    transition: max-height 0.3s ease-in-out;
    max-height: 80px;
    width: auto;
    height: auto;
}

.main-nav.scrolled .custom-logo {
    max-height: 60px; /* Scrolled logo height */
}



