/*
Theme Name: ReivveTheme
Theme URI: https://www.reivve.com/
Author: Sangeetha M.
Author URI: https://www.reivve.com
Description: A responsive, minimalist WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: reivve-theme
*/

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .site-header, .site-footer {
        text-align: center;
        padding: 20px;
    }
}
body{margin:0!important; font-family:"Lato", Sans-serif;}
/* Header Styles */
.site-header {
    background-color: #ffffff; /* Background color of the header */
    padding: 20px; /* Padding around the header */
    border-bottom: 1px solid #e0e0e0; /* Bottom border for separation */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between logo and menu */
    align-items: center; /* Center align items vertically */
}

.site-branding {
    display: flex;
    align-items: center; /* Center the logo vertically */
}

.site-title {
    font-size: 2rem; /* Title font size */
    margin: 0;
}

.site-title a {
    color: #333333; /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.site-title a:hover {
    color: #0073aa; /* Link color on hover */
}

.site-description {
    font-size: 1rem; /* Description font size */
    color: #666666; /* Description text color */
}

.main-navigation {
    display: flex; /* Ensure navigation container is flex */
}

#primary-menu {
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
    display: flex; /* Align menu items horizontally */
}

#primary-menu li {
    padding: 0 15px; /* Space between menu items */
	display:inline!important;
}

#primary-menu a {
    color: #333333; /* Menu link color */
    text-decoration: none; /* Remove underline from links */
    font-size: 1rem; /* Font size for menu items */
    display: inline-block; /* Ensure links are inline-block for padding/margins */
}

#primary-menu a:hover {
    color: #0073aa; /* Link color on hover */
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .site-header {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: flex-start; /* Align items to the start */
        padding: 10px;
    }

    .site-branding {
        margin-bottom: 10px; /* Space below the logo */
    }

    .site-title {
        font-size: 1.5rem;
    }

    .site-description {
        font-size: 0.875rem;
    }

    .main-navigation {
        width: 100%; /* Make navigation full width */
    }

    #primary-menu {
        flex-direction: column; /* Stack menu items vertically */
    }

    #primary-menu li {
        margin: 5px 0; /* Space between menu items in vertical layout */
    }
}
