/*
Theme Name: CBS Custom Theme 
Author: C.B.Snow/ChatGPT/DeepSek
Description: Responsive Horizintal Navbar
Version: 1.0 4/26/2025
*/

body { background-color: #ccc; } 

/* Menu styling */
.menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu li {
    position: relative;
    white-space: nowrap;
}
.menu li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.menu li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: #eee;
    margin: 0;
    padding: 0;
    width: 170px;
}
.menu li ul.sub-menu li a {
    display: block;
    text-align: left;
    padding: 5px 10px;
    white-space: normal;
}
.menu li:hover > ul.sub-menu {
    display: block;
}

/* Dropdown triangle */
.dropdown-toggle {
    display: inline-block;
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='currentColor' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.menu li:hover > a .dropdown-toggle {
    transform: rotate(180deg);
}

/* Hamburger button */
.menu-toggle {
    display: none;
    background: #ccc;
    border: none;
    font-size: 1.5em;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 170px;
    text-align: left;
}

/* Responsive menu for mobile */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 170px;
    }
    .menu.active {
        display: flex;
        width: 170px;
    }
    .menu-toggle {
        display: block;
    }
    .menu li ul.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        display: none;
    }
    .menu li:hover > ul.sub-menu,
    .menu li:focus-within > ul.sub-menu {
        display: block;
    }
}

/* Site container */
.site-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    border: 3px solid black; /* <<< black border around the page */
}

/* Header styling */
.site-header {
    width: 100%;
    background: #fff;
    padding: 10px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.header-left,
.header-center,
.header-right {
    flex: 1;
}
.header-left {
    text-align: left;
}
.header-center {
    text-align: center;
}
.header-right {
    text-align: right;
}
.site-logo {
    max-width: 100%;
    height: 170px;
}


.rounded-corners15 img {
     border-radius: 15px; 
}

.rounded-corners30 img {
     border-radius: 30px;            
}   
