/*
Theme Name: FP WP Static Theme
Theme URI: http://example.com/my-custom-theme
Author: Dude With No Comb
Author URI: http://example.com
Description: A custom theme for a single page website.
Version: 1.0
*/

#content {
    margin-top: 60px; 
}

body {
    background-color: #fff;   
    margin: 0;                    
    font-family: Arial, sans-serif; 
}

.item-row {
    display: flex;                
    align-items: stretch;         
    justify-content: space-between; 
    background-color: #c7ffc9;   
    border-radius: 10px;         
    padding: 20px;                
    gap: 10px;                    
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border: 3px solid #459633;    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.item-row .item-heading,
.item-row .item-paragraph,
.item-row .rg-button {
    color: white;                 
}

.item-row .item-image,
.item-row .item-heading,
.item-row .item-paragraph,
.item-row .item-button {
    flex: 1 1 33%;                
    background-color: #1D1F2D;    
    padding: 10px;                
    border-radius: 5px;           
    margin: 5px 0;                
    
    display: flex;               
    align-items: center;          
    justify-content: center;      
    min-height: 100%; 
}

.item-row .item-paragraph {
    font-size: 18px;              
    font-weight: bold;           
}

.item-row .rg-button {
    background-color: #2A6322;    
    padding: 10px 20px;           
    text-align: center;   
    font-weight: bolder;        
    text-decoration: none;       
    display: inline-block;        
    transition: background-color 0.3s ease; 
    border-radius: 10px;    
}

.item-row .item-image img {
    max-width: 100%;     
    max-height: 100%;    
    object-fit: contain; 
    display: block;      
}

@media (max-width: 768px) {
    .item-row {
        flex-direction: row;  
        align-items: stretch;     
        flex-wrap: wrap;          
        gap: 0px;    
    }

    .item-row .item-image,
    .item-row .item-paragraph,
    .item-row .item-button {
        flex: 1;                   
        max-width: 30%;            
        text-align: center;       
        margin: 0; 
        min-height: 100%;
        border-radius: 0px;
    }

    .item-row .item-heading {
        display: none; 
    }
}

.item-row .rg-button:hover {
    background-color: #b87a00;    
}








.content-before {
    margin-bottom: 30px;
    background-color: #f1f1f1;
    padding: 20px;
}

.content-after {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px;
}












.custom-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #459633; 
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
}

.custom-navbar .navbar-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
}

.custom-navbar .nav-item {
    padding: 5px 10px; 
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-navbar .nav-item i {
    font-size: 36px; 
    color: white;
    line-height: 1;
    transition: color 0.3s ease;
}

.custom-navbar .nav-item img {
    width: 36px; 
    height: 36px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.custom-navbar .nav-item:hover i,
.custom-navbar .nav-item:hover img {
    color: #fff; 
    opacity: 0.8; 
}

.custom-navbar .menu-button {
    padding: 10px 15px;
    background-color: #459633;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-navbar .menu-button:hover {
    background-color: #459633;
    color: #1D1F2D; 
}

@media (max-width: 768px) {
    #content {
        margin-top: 0; 
    }

    .custom-navbar {
        top: auto;
        bottom: 0;
        justify-content: space-around;
        margin-top: 0; 
    }

    .custom-navbar .navbar-container {
        flex-direction: row;
        justify-content: space-around;
    }

    .custom-navbar .menu-button {
        flex: 1;
        text-align: center;
        padding: 15px;
    }
}



