/* GENERAL STYLES & FONT */
body {
    background-color: #1a1515; /* Dark background */
    color: #ffffff;            /* Default text color is white */
    font-family: 'Poppins', sans-serif; /* Poppins font with a fallback */
    margin: 0;
}

/* 1. MAIN CONTENT BOX */
#main-devlog-box {
    width: 90%;
    max-width: 600px;
    background-color: #5d355b; /* The main dark purple color */
    
    margin: 50px auto;          /* Centering the box */
    
    height: 100%;
    
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;           /* Ensures internal elements respect the border-radius */
}

/* 2. HEADER (H1) STYLES */
h1 {
    color: #ffffff;
    font-size: 1.8em; 
    font-weight: 700;
    text-align: center; 
    padding: 25px 0;
    margin: 0;
}

/* 3A. NAVIGATION CONTAINER */
#main-nav {
    background-color: #382537; /* Darker purple for the ribbon */
    padding: 10px 0;          
}

/* 3B & C. NAVIGATION LIST & LINKS */
#main-nav ul {
    list-style: none;
    padding: 0;      
    margin: 0;       
    display: flex;             
    justify-content: center; /* Centers the group of links */
    align-items: center;       
}

#main-nav li {
    margin-right: 20px; /* Space between links */
}

#main-nav li:last-child {
    margin-right: 0; /* Remove space after the last link */
}

#main-nav a {
    text-decoration: none; 
    color: #ffffff;        
    font-weight: 400;
    padding: 5px 10px; /* Padding for background hover effect */
}

/* 3D. HOVER EFFECT */
#main-nav a:hover {
    background-color: #794676; /* Lighter highlight color */
    border-radius: 5px; 
    transition: background-color 0.2s ease-in-out; 
}

/* 4A. WELCOME CONTENT CONTAINER (Pink Block) */
#welcome-content {
    background-color: #FFADAD; /* The light pink color */
    color: #382537;            /* Dark text for contrast */
    text-align: center;        
    padding: 30px 20px 0 20px; /* Reduced bottom padding, as tools title is inside */
}

/* 4B. TEXT STYLES */
#welcome-content p {
    margin: 10px 0;
}

.greeting {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 4C. HORIZONTAL RULE (Separator Line) */
#welcome-content hr {
    border: none;              
    border-top: 2px solid #382537; 
    width: 60%;                
    margin: 30px auto;         
}

.section-title {
    font-size: 1.2em;
    font-weight: 700;
    margin: 20px 0 0px 0; 
    font-style: italic;
}

/* 5. TOOLS LOGOS SECTION (Light Green Block) */
#tools-section {
    background-color: #C3E9C8; /* The light green color */
    padding: 20px;             /* Space around the logos */
    text-align: center;        /* Backup for centering */
}

.logo-container {
    display: flex;                     /* Use Flexbox for horizontal layout */
    justify-content: space-around;     /* Distribute space around the items */
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
}

#tools-section .logo-container img {
  
    width: auto;   /* Set a fixed size for the logos */
    height: 45px;
    
    object-fit: contain;
    /* Optional: filter to make logos black for a unified look */
    /* filter: grayscale(100%) brightness(20%); */ 
}